-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path51.cpp
75 lines (58 loc) · 1.5 KB
/
51.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
#include <iostream>
#include <vector>
#include <cmath>
using namespace std;
class Solution {
public:
vector<vector<string> > result ;
vector<vector<string> > solveNQueens(int n){
vector<int> board(n,0) ;
solve(board,0,n);
return result;
}
void solve(vector<int> board, int row,int n){
if (row == n){
vector<string> str_board = transfer(board);
result.push_back(str_board);
return;
}
for(int col = 0 ; col < n; col++){
if(isValid(board,row,col)){
board[row] = col;
solve(board,row+1,n);
}
}
return;
}
vector<string> transfer(vector<int> board){
int n = board.size();
vector<string> str_board;
int col = 0;
for(int row =0; row<n;row++)
{
string s(n,'.');
col = board[row];
s[col] = 'Q';
str_board.push_back(s);
}
return str_board;
}
bool isValid(vector<int> board,int row,int col){
for(int r = row-1; r>=0 ;r--)
{
if (board[r] == col || abs(r-row) == abs(board[r] - col) )
return false;
}
return true;
}
};
int main(){
Solution sol;
vector<vector<string> > result = sol.solveNQueens(4);
int m = result.size();
int n = result[0].size();
for(int i =0; i<m;i++)
for(int j =0 ; j<n;j++)
cout << result[i][j]<<endl;
return 0;
}