Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- IFileDialog
- DirectX11
- 2294
- baekjoon
- C
- DeferredRendering
- 백준
- directx
- UnrealEngine4
- RVO
- Frustum
- 티스토리챌린지
- Unreal Engine5
- winapi
- 오블완
- 줄 세우기
- 1563
- UE5
- UnrealEngine5
- GeeksForGeeks
- softeer
- NRVO
- C++
- Programmers
- 프로그래머스
- 언리얼엔진5
- const
- RootMotion
- algorithm
- 팰린드롬 만들기
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 2239번 : 제출 본문
https://www.acmicpc.net/problem/2239
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
int arr[9][9];
bool checkRow(int y, int x, int num)
{
for (int i = y - 1; i >= 0; --i)
{
if (arr[i][x] == num) return false;
}
for (int i = y + 1; i < 9; ++i)
{
if (arr[i][x] == num) return false;
}
return true;
}
bool checkCol(int y, int x, int num)
{
for (int i = x - 1; i >= 0; --i)
{
if (arr[y][i] == num) return false;
}
for (int i = x + 1; i < 9; ++i)
{
if (arr[y][i] == num) return false;
}
return true;
}
bool check33(int y, int x, int num)
{
int startY = (y / 3) * 3;
int startX = (x / 3) * 3;
for (int i = startY; i < startY + 3; ++i)
{
for (int j = startX; j < startX + 3; ++j)
{
if (arr[i][j] == num) return false;
}
}
return true;
}
void DFS(int y, int x)
{
if (x == 9)
{
x = 0;
++y;
if (y == 9)
{
for (int i = 0; i < 9; ++i)
{
for (int j = 0; j < 9; ++j)
{
cout << arr[i][j];
}
cout << endl;
}
exit(0);
}
}
if (arr[y][x] == 0)
{
for (int i = 1; i <= 9; ++i)
{
if (!checkRow(y, x, i)) continue;
if (!checkCol(y, x, i)) continue;
if (!check33(y, x, i)) continue;
arr[y][x] = i;
DFS(y, x + 1);
arr[y][x] = 0;
}
}
else
{
DFS(y, x + 1);
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
for (int i = 0; i < 9; ++i)
{
string s;
cin >> s;
for (int j = 0; j < 9; ++j)
{
arr[i][j] = s[j] - '0';
}
}
DFS(0, 0);
}
|
cs |
연습으로 풀어볼만한 백트래킹 문제이다.
스도쿠라는 게임에 조건에 맞게 숫자를 넣고 빼면서 완전탐색을 돌리면 된다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 11000번 : 강의실 배정 (0) | 2023.11.02 |
---|---|
[Algorithm] Baekjoon 1038번 : 감소하는 수 (1) | 2023.10.31 |
[Algorithm] Baekjoon 1744번 : 수 묶기 (1) | 2023.10.20 |
[Algorithm] Baekjoon 2110번 : 공유기 설치 (0) | 2023.10.20 |
[Algorithm]Baekjoon 1103 : 게임 (0) | 2023.10.20 |