forked from AnasImloul/Leetcode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathN-Queens.cpp
60 lines (50 loc) · 1.38 KB
/
N-Queens.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
class Solution {
bool isSafe(vector<string> board, int row, int col, int n){
int r=row;
int c=col;
// Checking for upper left diagonal
while(row>=0 && col>=0){
if(board[row][col]=='Q') return false;
row--;
col--;
}
row=r;
col=c;
// Checking for left
while(col>=0){
if(board[row][col]=='Q') return false;
col--;
}
row=r;
col=c;
// Checking for lower left diagonal
while(row<n && col>=0){
if(board[row][col]=='Q') return false;
row++;
col--;
}
return true;
}
void solve(vector<vector<string>> &ans, vector<string> &board, int n, int col){
if(col==n){
ans.push_back(board);
return;
}
for(int row=0;row<n;row++){
if(isSafe(board,row,col,n)){
board[row][col]='Q';
solve(ans,board,n,col+1);
board[row][col]='.';
}
}
}
public:
vector<vector<string>> solveNQueens(int n) {
vector<vector<string>> ans;
vector<string> board;
string s(n,'.');
for(int i=0;i<n;i++) board.push_back(s);
solve(ans,board,n,0);
return ans;
}
};