forked from MAYANK25402/Hactober-2023-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
N-Queens.cpp
81 lines (78 loc) · 1.81 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
bool isSafe(int row, int col, vector<string> Board, int n)
{
int rowcopy = row;
int colcopy = col;
while (row >= 0 && col >= 0)
{
if (Board[row][col] == 'Q')
return false;
row--;
col--;
}
row = rowcopy;
col = colcopy;
while (col >= 0)
{
if (Board[row][col] == 'Q')
return false;
col--;
}
row = rowcopy;
col = colcopy;
while (row < n && col >= 0)
{
if (Board[row][col] == 'Q')
return false;
row++;
col--;
}
return true;
}
void solve(int col, int n, vector<string> &Board, vector<vector<string>> &ans)
{
if (col == n)
{
ans.push_back(Board);
return;
}
for (int row = 0; row < n; row++)
{
if (isSafe(row, col, Board, n))
{
Board[row][col] = 'Q';
solve(col + 1, n, Board, ans);
Board[row][col] = '.';
}
}
}
vector<vector<string>> solveNQueens(int n)
{
vector<vector<string>> ans;
string s(n, '.');
vector<string> Board(n);
for (int i = 0; i < n; i++)
Board[i] = s;
solve(0, n, Board, ans);
return ans;
}
};
int main()
{
int n;
cin >> n;
Solution ob;
vector<vector<string>> ans = ob.solveNQueens(n);
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
cout << ans[i][j] << "\n";
}
cout << "\n";
}
}