티스토리 뷰
백준 소스코드 [C++] 2239 스도쿠
#include <iostream>
#include <algorithm>
#include <queue>
#include <string.h>
#include <limits.h>
#include <vector>
#include <math.h>
#include <stack>
#include <bitset>
#include <string>
#include <set>
#include <sstream>
#define all(v) v.begin(), v.end()
#define pii pair<int,int>
#define make_unique(v) v.erase(unique(v.begin(), v.end()), v.end())
typedef long long ll;
using namespace std;
int arr[9][9];
struct dot {
int y, x;
};
vector<dot> dots;
bool chk(dot D, int num) {
int Y = D.y / 3;
int X = D.x / 3;
for (int i = 0;i < 9;i++) if (D.y!=i && arr[i][D.x] == num) return false;
for (int j = 0;j < 9;j++) if (D.x!=j && arr[D.y][j] == num) return false;
for (int i = 3 * Y;i < 3 * Y + 3;i++)for (int j = 3 * X;j < 3 * X + 3;j++)
if (!(D.y==i && D.x==j) && arr[i][j] == num) return false;
return true;
}
void search(int k) {
if (k == dots.size()) {
for (int i = 0;i < 9;i++) {
for (int j = 0;j < 9;j++) cout << arr[i][j];
cout << '\n';
}
exit(0);
}
dot D = dots[k];
for (int a = 1;a <= 9;a++) {
arr[D.y][D.x] = a;
if (chk(D, a) == true) search(k + 1);
arr[D.y][D.x] = 0;
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
string s;
for (int i = 0;i < 9;i++) {
cin >> s;
for (int j = 0;j < 9;j++) {
arr[i][j]=s[j]-'0';
if (arr[i][j] == 0) {
dot newdot;
newdot.y = i, newdot.x = j;
dots.push_back(newdot);
}
}
}
search(0);
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 2056 작업 (0) | 2021.03.03 |
---|---|
백준 소스코드 [C++] 4056 스-스-스도쿠 (0) | 2021.03.02 |
백준 소스코드 [C++] 2580 스도쿠 (0) | 2021.03.02 |
백준 소스코드 [C++] 12605 단어순서 뒤집기 (0) | 2021.03.02 |
백준 소스코드 [C++] 17404 RGB거리 2 (0) | 2021.03.02 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- State Restoration
- 부스트캠프 6기
- 코딩대회
- rxswift
- 네트워크 플로우
- WWDC19
- CompositionalLayout
- IOS
- WWDC21
- 최단경로문제
- observeOn
- 포드 풀커슨 알고리즘
- 최단경로 문제
- 최단경로 알고리즘
- 에드몬드 카프 알고리즘
- 벨만포드 알고리즘
- HIG
- 컴퓨터 추상화
- CPU와 Memory
- 네트워크 유량
- 강한 순환 참조
- WWDC16
- 다익스트라 시간복잡도
- 최대 매칭
- mach-o
- 벨만포드 시간복잡도
- WWDC17
- MeTal
- Testable
- test coverage
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함