-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathN_Queens_Problem.cpp
48 lines (41 loc) · 1012 Bytes
/
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
#include<bits/stdc++.h>
using namespace std;
/* N Queens Problem. Given a board of N*N size, find the number of ways to place N queens in it
This is the backtracking approach */
int N;
vector <int> placed; // will store the column number in which the queen is placed for each row
int ans = 0;
void rec(int row)
{
// we have to place the queen at row.
if(row==N)
{
ans++;
return;
}
for(int col = 0; col<N; col++)
{
bool safe = 1;
for(int pRow=0; pRow < row; pRow++)
{
int pCol = placed[pRow];
// the diagonal elements and same col is prohibited
if(pCol==col || (abs(pCol-col)==abs(pRow-row)))
{
safe = 0;
}
}
if(safe) // the column can be used to place the queen
{
placed.push_back(col);
rec(row+1);
placed.pop_back();
}
}
}
int main()
{
N = 1;
rec(0);
cout << ans << endl;
}