-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNo52NQueens2.java
56 lines (49 loc) · 1.31 KB
/
No52NQueens2.java
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
package com.wzx.leetcode;
/**
* @see <a href="https://leetcode.com/problems/n-queens-ii/">https://leetcode.com/problems/n-queens-ii/</a>
* @author wzx
*/
public class No52NQueens2 {
private boolean[] colSet = null;
private boolean[] diagonalSet = null;
private boolean[] antiDiagonalSet = null;
private int cnt = 0;
/**
* 回溯
* <p>
* time: O(n!)
* space: O(n)
*/
public int totalNQueens(int n) {
// 每列是否有皇后
colSet = new boolean[n];
// 每个左上斜线是否有皇后
diagonalSet = new boolean[2 * n - 1];
// 每个右上斜线是否有皇后
antiDiagonalSet = new boolean[2 * n - 1];
cnt = 0;
recursion(0, n);
return cnt;
}
private void recursion(int row, int n) {
if (row == n) {
cnt++;
return;
}
for (int col = 0; col < n; col++) {
if (valid(row, col, n)) {
setVisit(row, col, n, true);
recursion(row + 1, n);
setVisit(row, col, n, false);
}
}
}
private boolean valid(int row, int col, int n) {
return !colSet[col] && !diagonalSet[col + row] && !antiDiagonalSet[row - col + n - 1];
}
private void setVisit(int row, int col, int n, boolean visit) {
colSet[col] = visit;
diagonalSet[col + row] = visit;
antiDiagonalSet[row - col + n - 1] = visit;
}
}