스도쿠를 구현 해보고나니 정말 간단한 문제였다.
각 열에 퀸을 두고 행과 대각선을 검사하여 재귀를 돌렸다.
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
import java.util.Scanner;
public class NQueen {
static int n = 0;
static int count = 0;
static int[] arr;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
arr = new int[n];
dfs(0);
System.out.print(count);
}
static void dfs(int depth) {
if(depth==n) {
count++;
return;
}
else {
for(int i=0; i<n; i++) {
arr[depth] = i+1;
if(depth!=0) {
if(possible(depth+1, i+1)) {
dfs(depth+1);
}
}
else {
dfs(depth+1);
}
}
}
}
/*
* 행과 대각선으로 퀸이 존재하는지 체크한다.
* */
static boolean possible(int index, int num) {
for(int i=0; i<index-1; i++) {
if(arr[i]==num) {
return false;
}
if((Math.abs(index-1)-i)==Math.abs(num-arr[i])) {
return false;
}
}
return true;
}
}