-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsf1.cpp
66 lines (64 loc) · 1.17 KB
/
sf1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <vector>
#include <queue>
#include <stack>
using namespace std;
#define INF 0x3f3f3f3f
#define PI acos(-1)
typedef long long ll;
typedef unsigned long long ull;
bool vis[20][20];
int n, ans;
bool check(int x, int y)
{
for(int i=1;x-i>=1;i++)
{
if(vis[x-i][y])return false;
if(y-i>=1 && vis[x-i][y-i])return false;
if(y+i<=n && vis[x-i][y+i])return false;
}
return true;
}
void dfs(int row)
{
if(row>n)
{
ans++;
printf("# %d\n", ans);
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
printf("%d",vis[i][j]);
}
printf("\n");
}
printf("\n");
return;
}
for(int i=1;i<=n;i++)
{
if(check(row,i))
{
vis[row][i]=true;
dfs(row+1);
vis[row][i]=false;
}
}
}
int main()
{
#ifdef __DEBUG__
freopen("in.txt", "r", stdin);
freopen("out.txt", "w", stdout);
#endif
scanf("%d",&n);
memset(vis, false, sizeof(vis));
ans=0;
dfs(1);
return 0;
}