-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNQueens2.java
47 lines (42 loc) · 1.1 KB
/
NQueens2.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
import java.util.Arrays;
/**
* Created by cpacm on 2017/6/26.
*/
public class NQueens2 {
private static int count = 0;
private static int[] positions;
public static void main(String[] args) {
System.out.println(totalNQueens(8));
}
public static int totalNQueens(int n) {
positions = new int[n];
Arrays.fill(positions, -1);
dp(0, n);
return count;
}
public static void dp(int n, int max) {
if (n == max) {
count++;
return;
}
int valueX = n;
int valueY = 0;
while (valueY < max) {
if (hasPlaced(n, valueX, valueY)) {
positions[n] = valueY;
dp(n + 1, max);
}
valueY++;
}
}
public static boolean hasPlaced(int n, int valueX, int valueY) {
for (int j = 0; j < n; j++) {
int x = j;
int y = positions[j];
if (positions[j] == valueY || Math.abs(valueX - x) == Math.abs(valueY - y)) {
return false;
}
}
return true;
}
}