문제 출처 : https://www.acmicpc.net/problem/9663
이번 문제는 백트래킹의 전형적인 예시인 N-Queen 문제이다.
이 문제는 퀸이 서로 공격할 수 없게 놓는 총 경우의 수를 출력하는 문제이다.
완벽하게 백트래킹이라는 기법을 이해는 못하였지만 점차 문제를 풀면서 개념을 확립할 예정이다.
아래는 해당 문제를 해결한 소스이다.
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
|
#include<stdio.h>
#pragma warning(disable:4996)
int chess[16];
int count;
int flag;
void BackTracking(int row, int N)
{
if (row == N)
{
count++;
return;
}
else
{
for (int i = 0; i < N; i++)
{
flag = 0;
chess[row] = i;
for (int j = 0; j < row; j++)
{
int num = chess[row] - chess[j];
if (num < 0)
num = num * -1; // 대각선 체크
if(chess[row] == chess[j] || (row - j) == num) // 세로, 대각선 체크
flag = 1;
}
if (flag == 0)
BackTracking(row + 1, N);
}
}
}
int main()
{
int N;
scanf("%d", &N);
BackTracking(0,N);
printf("%d", count);
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'알고리즘' 카테고리의 다른 글
백준 1049번 문제 ( 기타줄 ) (0) | 2020.01.08 |
---|---|
백준 18110번 문제 ( solved.ac ) (0) | 2020.01.08 |
백준 6603번 문제 ( 로또 ) (0) | 2019.12.27 |
백준 5430번 문제 ( AC ) (0) | 2019.12.25 |
백준 1406번 문제 ( 에디터 ) (0) | 2019.12.25 |