-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
42-tgyuuAn #152
42-tgyuuAn #152
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"์ํ์ผ๋ก ํ ์ ์์ง๋ง ๋ฐฑํธ๋ํน์ผ๋ก ๋ ํจ์จ์ ์ผ๋ก ํ ์ ์๋ค."
์ฒจ๋ถ๋ ์ฌ์ง์์์ ๋ฐฑํธ๋ํน ์ค๋ช ์ ๋ณด๋, ์ํ์ DFS์ ๋น์ทํ ๊ฒ ๊ฐ์๋ฐ, ์ฐจ์ด์ ์ด ๋ฌด์์ธ์ง ๊ถ๊ธํด์ ธ์ ์ฐพ์๋ณด์์ต๋๋ค.
๋ฐฑํธ๋ํน๊ณผ DFS์ ๊ฐ์ฅ ํฐ ์ฐจ์ด์ ์ "๋ถํ์ํ ๊ฒฝ์ฐ์ ์๊น์ง ํ์ํ์ง ์๋๋ค" ์ฆ, ํธ๋ฆฌ์ ๋งจ ์๋๊น์ง ํ์ํ ํ์ ์์ด, ํน์ ๊ฐ์ง์์ ์กฐ๊ฑด์ด ๋ง์ง ์์ผ๋ฉด ๋๋์ ์จ๋ค๋ ๊ฒ์ธ ๊ฒ ๊ฐ๋๊ตฐ์ฉ
๋ํ์ ์ธ ๋ฌธ์ ๊ฐ N-queen์ด๋๋ฐ, ์ ์ ํ์๋ N-queen์ ๋ณด๋ ๋์ ์ฐจ์ด๊ฐ ์ดํด๊ฐ ๋๋ ๊ฒ ๊ฐ๊ธฐ๋ ํ๊ณ ,,, ์ ๋ฆฌํ๋ฉด 'dfs์์ ๊ฒฝ์ฐ์ ์๋ฅผ ์ค์ผ ์ ์์ผ๋ฉด ๋ฐฑํธ๋ํน์ด๋ค!' ์ ๋๊ฐ ๋๊ฒ ๋ค์๐ค๐ค ์๊ณ ๋ฆฌ์ฆ ์ ํ ๋ ํ๋ ์ป๊ณ ๊ฐ๋๋ค~!~!! ์๊ณ ํ์ จ์ต๋๋ค
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ ๋ ๋น์ทํ ๋ก์ง์ผ๋ก ํ์ด๋ณด์์ต๋๋ค.
๋ค๋ฅธ ๋ถ๋ถ์ด๋ผ๋ฉด 0์ธ ๊ณณ์ ์์น๋ฅผ ๋ด์ ๋ฆฌ์คํธ ๋ ๊ฐ๋ฅผ ๋ฏธ๋ฆฌ ๋ง๋ค์ด์ dfs๋ฅผ ์งํํ๊ฒ ํ์ด์.
๊ทธ๋ฐ๋ฐ ๋ค์ ๋ณด๋ ์ด ๋ถ๋ถ๋ ํ๊ท๋ ํ์ด์ฒ๋ผ ํ๋๊ฒ ๋ ๋์๊ฑฐ ๊ฐ๋ค์.
๋จ์ํ๊ฒ dfsํ ๋ 0์ด ์๋๋ฉด ๋ค์ ์์น๋ก ๋์ด๊ฐ๋ฉด ๋๋๊น
๋ฉ๋ชจ๋ฆฌ๋ ๋ ์๋ ์ ์์๊ฑฐ ๊ฐ๊ธฐ๋ ํ๊ณ ํฌ๊ฒ ๋ฐ๋ก ๋ฆฌ์คํธ๋ฅผ ๋ง๋ค ํ์๊ฐ ์์ด๋ณด์ด๋ค์.
๋ฌธ์ ์ ์ถ์ด ํ์ด์ฌ3๋ก ์๊ฐ์ด๊ณผ๊ฐ ๋๊ธธ๋ ํน์๋ ํด์ ํ์ดํ์ด๋ก ํ๋ ํต๊ณผ๊ฐ ๋๊ตฐ์
ํน์ ํ์ด์ฌ3๋ก ์ ์ถํ์
จ๋์
board = [list(map(int, stdin.readline().strip())) for _ in range(9)]
empties = []
rowv = [None for _ in range(9)]
for r in range(9):
rowv[r] = list(set(range(1, 10)) - set(board[r]))
rowv[r].sort()
for c in range(9):
if not board[r][c]:
empties.append((r, c))
rowchecks = [[False] * len(rowv[r]) for r in range(9)]
def is_valid(r, c, v):
# ์ด๊ณผ 3x3 ์์ญ ๊ฒ์ฌ๋ง ํ๋ค
for i in range(9):
if board[i][c] == v:
return False
nr = r - r % 3
nc = c - c % 3
for i in range(nr, nr + 3):
for j in range(nc, nc + 3):
if board[i][j] == v:
return False
return True
def solve(i):
if i == len(empties):
return True
r, c = empties[i]
# ํ ๋ณ๋ก ์ถ๊ฐ๊ฐ๋ฅํ ๊ฐ๋ง ํ์ธ
for j in range(len(rowv[r])):
if rowchecks[r][j]:
continue
v = rowv[r][j]
if is_valid(r, c, v):
rowchecks[r][j] = True
board[r][c] = v
if solve(i + 1):
return True
rowchecks[r][j] = False
board[r][c] = 0
return False
solve(0)
for row in board:
print(''.join(map(str, row)))
์ ๋ ํ์ด์ฌ์ผ๋ก ํ๋๊น ์๊ฐ ์ด๊ณผ๋์ pypy๋ก ์ ์ถํ๋ต๋๋ค.... |
#include <iostream>
#include <array>
#include <functional>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
array<array<int, 9>, 9> board{};
array<array<bool, 9>, 10> visitedRow{}, visitedCol{}, visitedBox{};
auto getBox = [](int y, int x) {
return y / 3 * 3 + x / 3;
};
for (int y = 0; y < 9; y++) {
string s;
cin >> s;
for (int x = 0; x < 9; x++) {
int &cell = board[y][x];
cell = s[x] - '0';
if (cell) {
visitedRow[y][cell] = true;
visitedCol[x][cell] = true;
visitedBox[getBox(y, x)][cell] = true;
}
}
}
function<void(int)> dfs = [&](int index) {
if (index == 81) {
for (auto &row: board) {
for (int item: row) {
cout << item;
}
cout << '\n';
}
exit(0);
}
int y = index / 9;
int x = index % 9;
int &cell = board[y][x];
if (cell) {
dfs(index + 1);
return;
}
for (int i = 1; i <= 9; i++) {
if (visitedRow[y][i]) continue;
if (visitedCol[x][i]) continue;
if (visitedBox[getBox(y, x)][i]) continue;
visitedRow[y][i] = true;
visitedCol[x][i] = true;
visitedBox[getBox(y, x)][i] = true;
cell = i;
dfs(index + 1);
visitedRow[y][i] = false;
visitedCol[x][i] = false;
visitedBox[getBox(y, x)][i] = false;
cell = 0;
}
};
dfs(0);
} ์ ๋ ์ซ์๋ฅผ ๋ฃ์ ๋๋ง๋ค ํ, ์ด, ๋ฐ์ค ๋ณ๋ก ๋ฐฉ๋ฌธ ์ฒ๋ฆฌ๋ฅผ ํด์ฃผ์ด ๋ฐฑํธ๋ํนํ์ต๋๋ค ํํ |
๐ ๋ฌธ์ ๋งํฌ
์ค๋์ฟ
โ๏ธ ์์๋ ์๊ฐ
1์๊ฐ
โจ ์๋ ์ฝ๋
์ด ๋ฌธ์ ๊ฐ๋จํ๋ค.
๊ทธ๋ฅ ์ํ์ผ๋ก ํ๋ฉด ๋๋๋ฐ,
๋ฐฑ ํธ๋ํน์ ์ด์ฉํ๋ฉด ๋ณด๋ค ํจ์จ์ ์ผ๋ก ํ ์ ์๋ค.
์๋์ ๊ฐ์ ๊ทธ๋ฆผ์ด ์๋ค๊ณ ํด๋ณด์.
์ฐ๋ฆฌ๋ ์ฌ๋ฌ ๊ฐ์ง์ ๋ต์ด ์์ ๊ฒฝ์ฐ ์ฌ์ง์์ผ๋ก ์ ๋ ฌํ์ ๋ ๊ฐ์ฅ ์์ ์๋ ๊ฒฝ์ฐ๋ฅผ ๋ต์ผ๋ก ์ ์ถ ํด์ผ ํ๋ค.
์ฆ, ๊ฐ์ฅ ์ผ์ชฝ - ์ ์นธ๋ถํฐ ์์ชฝ๋ถํฐ ์ฐจ๋ก๋๋ก ์ฐจ๊ณก์ฐจ๊ณก ์์ ์ ๋ถํฐ ์ง์ด๋ฃ์ผ๋ฉด์ ๋ง์ง๋ง ์นธ ๊น์ง ์ง์ด ๋ฃ์ผ๋ฉด ๋๋ค.
๋งจ ์ฒซ ์นธ์ ์ซ์๋ฅผ ๋ฃ๋๋ค๊ณ ์๊ฐํด๋ณด์.
๊ทธ๋ฌ๋ฉด ํด๋น ์นธ์๋ ์ซ์ 1์ ๋ฃ์ ์ ๋ฐ์ ์๋ค.
1์ ๋ฃ์ด ์ค๋ค.
๊ทธ ๋ค์ ๋น์นธ์ ์์์ ์ผ์ชฝ -> ์ค๋ฅธ์ชฝ์ผ๋ก ํ์ผ๋ฉด์ ์ฐพ์์ค๋ค.
ํด๋น ์นธ์ ๋ค์ด๊ฐ ์ ์๋ ์๋ 3๋ฐ์ ์์ผ๋ฏ๋ก ๋ 3์ ๋ฃ์ด์ค๋ค.
์๋ ์ง๊ธ ๋ณด๋๊น ๊ฐ๊ณ ์จ ์์จ๊ฐ ๋ ์ฌ์์ ํ ์นธ์ 2๊ฐ์ง ์ด์ ๊ฐ๋ฆผ๊ธธ์ด ์๋ค.
ํ ...
์... ์ง๊ธ ์์ ๋ค์ ๊ทธ๋ฆฌ๊ธฐ์ ์ข ๋ฒ๊ฒ๊ณ ..
์ ์ฌ์ง์ด ๋ฐฑ ํธ๋ํน์ ๋ชจ๋ ๊ฒ์ด๋ค!!
๋ง์ฝ ์ฌ๋ฌ๊ฐ์ง ๊ฐ๋ฆผ๊ธธ์ด ์์ ๊ฒฝ์ฐ ํ๋ ํ๋ ๋ฃ์ด๋ณด๋ฉด์ ๋ง์ฝ ๊ทธ ๊ฒฝ๋ก๋ก ๋ชฉ์ ์ง ๊น์ง ๋๋ฌํ์ง ๋ชปํ๋ฉด ๋ค์ ๋์์์ ๋ค๋ฅธ ๊ฒฝ์ฐ๋ฅผ ๋ฃ์ผ๋ฉด ๋๋ค!
์ด ๋ ์ฐ๋ฆฌ๋ ์ฌ์ ์์ผ๋ก ๊ฐ์ฅ ์์ ๊ฒฝ์ฐ๋ฅผ ๋ฃ์ด์ผ ํ๋ฏ๋ก ์๋ฌด ์ซ์๋ ๋ฃ์ผ๋ฉด ์๋๊ณ ์ฌ๋ฌ๊ฐ์ง ๊ฒฝ์ฐ์ ์ ์ค ๊ฐ์ฅ ์์ ์ ๋ถํฐ ์ฐจ๋ก๋๋ก ๋ฃ์ด๋ณธ๋ค!!!!!!
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ด ๋ฌธ์ ๋ฅผ ํ์๋ค๋ฉด ์ค๋์ฟ ๋ ๊ณต์ง๋ค!