ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#212051 | #3815. 种树 | Fisher2013 | 0 | 0ms | 1200kb | C++ | 500b | 2024-10-13 10:42:30 | 2024-10-13 12:55:04 |
answer
#include <bits/stdc++.h>
using namespace std;
int cnt = 0, n, m, vis[18][18];
void DFS(int i, int j, int num){
if(num == 0){
cnt++;
return;
}
int x = i, y = j;
while(x <= n){
if (!vis[x][y] && !vis[x + 1][y] && !vis[x - 1][y] && !vis[x][y + 1] && !vis[x][y - 1]){
vis[x][y] = 1;
DFS(x, y, num - 1);
vis[x][y] = 0;
}
y++;
if(y == m + 1){
y = 1, x++;
}
}
}
int main() {
int k;
cin >> n >> m >> k;
DFS(1, 1, k);
cout << cnt - 1;
return 0;
}
详细
小提示:点击横条可展开更详细的信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 1200kb
input:
2 2 1
output:
3
result:
wrong answer 1st numbers differ - expected: '4', found: '3'
Test #2:
score: 0
Wrong Answer
time: 0ms
memory: 1200kb
input:
2 3 2
output:
7
result:
wrong answer 1st numbers differ - expected: '8', found: '7'
Test #3:
score: 0
Wrong Answer
time: 0ms
memory: 1196kb
input:
4 4 2
output:
95
result:
wrong answer 1st numbers differ - expected: '96', found: '95'
Test #4:
score: 0
Wrong Answer
time: 0ms
memory: 1200kb
input:
4 4 5
output:
303
result:
wrong answer 1st numbers differ - expected: '304', found: '303'
Test #5:
score: 0
Wrong Answer
time: 0ms
memory: 1200kb
input:
3 4 3
output:
83
result:
wrong answer 1st numbers differ - expected: '84', found: '83'
Test #6:
score: 0
Wrong Answer
time: 0ms
memory: 1196kb
input:
3 5 2
output:
82
result:
wrong answer 1st numbers differ - expected: '83', found: '82'
Test #7:
score: 0
Wrong Answer
time: 0ms
memory: 1200kb
input:
3 5 3
output:
214
result:
wrong answer 1st numbers differ - expected: '215', found: '214'
Test #8:
score: 0
Wrong Answer
time: 0ms
memory: 1200kb
input:
3 5 4
output:
275
result:
wrong answer 1st numbers differ - expected: '276', found: '275'
Test #9:
score: 0
Wrong Answer
time: 0ms
memory: 1196kb
input:
3 5 5
output:
173
result:
wrong answer 1st numbers differ - expected: '174', found: '173'
Test #10:
score: 0
Wrong Answer
time: 0ms
memory: 1200kb
input:
4 3 5
output:
17
result:
wrong answer 1st numbers differ - expected: '18', found: '17'