-
Notifications
You must be signed in to change notification settings - Fork 168
/
N-Queens_problem.cpp
87 lines (75 loc) · 1.66 KB
/
N-Queens_problem.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
81
82
83
84
85
86
87
#include <iostream>
#include <vector>
using namespace std;
bool isSafe(vector<vector<bool> > grid, int curr_row, int y, int n)
{
for(int row=0; row<curr_row; row++)
{
if(grid[row][y]==1) // checking for a row
{
return false;
}
}
int row=curr_row, col=y;
while(row>=0 && col>=0)
{
if(grid[row][col]==1) // checking for upper left diagonal
{
return false;
}
row--;
col--;
}
row=curr_row, col=y;
while(row>=0 && col<=n)
{
if(grid[row][col]==1) // checking for upper right diagonal
{
return false;
}
row--;
col++;
}
return true;
}
void display(vector<vector<bool> > grid, int n)
{
for(int i=0; i<n; i++)
{
for(int j=0; j<n; j++)
{
if(grid[i][j])
cout<<"1";
else
cout<<"0";
}
cout<<endl;
}
}
// to count the no. of solutions possible
int count=0;
void countnQueen(vector<vector<bool> > &grid, int curr_row, int n)
{
if(curr_row==n){
count++;
display(grid, n);
cout<<endl;
return;
}
for(int col=0; col<n; col++){
if(isSafe(grid, curr_row, col, n)){
grid[curr_row][col]=1;
countnQueen(grid, curr_row+1, n);
grid[curr_row][col]=0; // backtracking
}
}
}
int main()
{
int n;
cin>>n;
vector<vector<bool> > grid(n, vector<bool>(n, false));
countnQueen(grid,0,n);
cout<<count;
return 0;
}