-
Notifications
You must be signed in to change notification settings - Fork 28
/
nqueenproblem.cpp
81 lines (73 loc) · 1.19 KB
/
nqueenproblem.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include<iostream>
using namespace std;
bool issafetoput(int sol[10][10],int i,int j,int n)
{
for(int k=0;k<n;k++)
{
if(sol[k][j] || sol[i][k])
{
return false;
}
}
int k=i;
int l=j;
while(k>=0 && l>=0)
{
if(sol[k][l])
{
return false;
}
k--;
l--;
}
k=i;
l=j;
while(k>=0 && l<n)
{
if(sol[k][l])
{
return false;
}
k--;
l++;
}
return true;
}
bool nqueen(int n,int i,int sol[10][10])
{
//base case
if(i==n)
{
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
cout<<sol[i][j];
}
cout<<endl;
}
return true;
}
for(int j=0;j<n;j++)
{
if(issafetoput(sol,i,j,n))
{
sol[i][j]=1;
bool kyaaagerakhpaya=nqueen(n,i+1,sol);
if(kyaaagerakhpaya)
{
return true;
}
sol[i][j]=0;
}
}
return false;
}
int main()
{
int n;
cin>>n;
int sol[10][10]={{0}};
nqueen(n,0,sol);
return 0;
}