반응형
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
- Crawling
- 알고리즘
- typescript
- 레벨 1
- 수학
- 소켓
- 가천대
- type challenge
- 쉬운 문제
- 백준
- HTTP 완벽 가이드
- 그래프
- Node.js
- 프로그래머스 레벨 2
- HTTP
- BFS
- socket
- 크롤링
- dfs
- Nestjs
- Algorithm
- javascript
- ip
- 프로그래머스
- 타입스크립트
- 타입 챌린지
- 자바스크립트
- 문자열
- dp
- TCP
Archives
- Today
- Total
kakasoo
[node.js] 스도쿠 ( 백준 2580번 ) 본문
반응형
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const input = [];
rl.on("line", (line) => {
input.push(line);
}).on("close", () => {
const map = input.map((row) => row.split(" "));
const nullPoint = [];
for (let i = 0; i < map.length; i++) {
for (let j = 0; j < map[i].length; j++) {
if (map[i][j] == 0) {
nullPoint.push([i, j]);
}
}
}
const getSquarePoint = (pos) => parseInt(pos / 3) * 3;
const check = (y, x) => {
for (let i = 0; i < 9; i++) {
if (i === y) continue;
if (map[i][x] == 0) continue;
if (map[i][x] == map[y][x]) {
return false;
}
}
for (let i = 0; i < 9; i++) {
if (i == x) continue;
if (map[y][i] == 0) continue;
if (map[y][i] == map[y][x]) {
return false;
}
}
const squareX = getSquarePoint(x);
const squareY = getSquarePoint(y);
for (let i = squareY; i < squareY + 3; i++) {
for (let j = squareX; j < squareX + 3; j++) {
if (i == y && j == x) continue;
if (map[i][j] == 0) continue;
if (map[i][j] == map[y][x]) {
return false;
}
}
}
return true;
};
const backTracking = (cur) => {
if (cur === nullPoint.length) {
map.forEach((el) => {
console.log(el.join(" "));
});
process.exit();
} else {
const [y, x] = nullPoint[cur];
for (let i = 1; i <= 9; i++) {
map[y][x] = i;
if (check(y, x)) {
backTracking(cur + 1);
}
map[y][x] = 0;
}
}
};
backTracking(0);
});
스도쿠를 풀었다.
x축 봐야 하고 y축 봐야 하고 3 x 3의 정사각형도 봐야 하니깐, 계속 오타나 실수가 나왔다.
일단 0인 지점을 모두 배열에 담아두고,
그 배열에 대한 백트래킹을 진행하였다.
0의 개수만큼 모두 메꾸는 데에 성공했다면 출력하고 종료시켰다.
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 숫자 문자열과 영단어 ( 프로그래머스 레벨 1 ) (0) | 2021.08.12 |
---|---|
[node.js] 가르침 ( 백준 1062번 ) (0) | 2021.08.05 |
[node.js] N-Queen ( 백준 9663번 ) (0) | 2021.08.04 |
[node.js] 부등호 ( 백준 2529번 ) (0) | 2021.08.03 |
[node.js] 부분 수열의 합( 백준 1182번 ) (0) | 2021.08.01 |