문제
N-Queen 문제는 크기가 N × N인 체스판 위에 퀸 N개를 서로 공격할 수 없게 놓는 문제이다.
N이 주어졌을 때, 퀸을 놓는 방법의 수를 구하는 프로그램을 작성하시오.
입력
첫째 줄에 N이 주어진다. (1 ≤ N < 15)
출력
첫째 줄에 퀸 N개를 서로 공격할 수 없게 놓는 경우의 수를 출력한다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class baekjoon9663 {
private static int n;
private static boolean[][] visit;
private static int count = 0;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = Integer.parseInt(br.readLine());
visit = new boolean[n][n];
queen9663(0);
System.out.println(count);
}
private static void queen9663(int index) {
if (index == n) {
count ++;
return;
}
for (int i = 0; i < n; i++) {
if (calculateQueenPosition(index, i)) {
visit[i][index] = true;
queen9663(index + 1);
visit[i][index] = false;
}
}
}
private static boolean calculateQueenPosition(int col, int row) {
int count = 1;
while (col - count >= 0) {
if (row + count < n && visit[row + count][col - count]) {
return false;
}
if (row - count >= 0 && visit[row - count][col - count]) {
return false;
}
if (visit[row][col - count]) {
return false;
}
count ++;
}
return true;
}
}
'알고리즘 > 중급1' 카테고리의 다른 글
[JAVA] 백준 2580번: 스도쿠 ( 중급 1-12 ) (0) | 2021.11.05 |
---|---|
[JAVA] 백준 16198번: 에너지 모으기 ( 중급 1-10 ) (0) | 2021.11.04 |
[JAVA] 백준 16197번: 두 동전 ( 중급1-9 ) - hard (0) | 2021.11.04 |
[JAVA] 15658번: 연산자 끼워넣기 (2) ( 중급 1-8 ) (0) | 2021.11.04 |
[JAVA] 백준 14225번: 부분수열의 합 ( 중급 1-7 ) (0) | 2021.11.03 |