티스토리 뷰
출처: https://www.acmicpc.net/problem/9663
백트래킹의 대표문제 N-queen
dfs 다시 공부하고 돌아와서 풀어보기.
const fs = require('fs');
const input = fs.readFileSync("/dev/stdin").toString().trim();
function solve(n) {
let answer = 0;
let cols = Array(n).fill(0);
answer = dfs(n,cols,0,answer);
function dfs(n,cols,row,answer){
if(n===row) return ++answer;
for(let i =0; i<n; i++){
cols[row] = i;
if(isPossible(row,i,cols)){
answer = dfs(n,cols,row+1,answer);
}
}
return answer;
}
function isPossible(x,y,cols){
for(let i = 0; i<x; i++){
if(cols[i] ===y ||Math.abs(x-i) === Math.abs(y-cols[i]))
return false;
}
return true;
}
return answer;
}
console.log(solve(+input))
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 14888번 : 연산자 끼워넣기 (0) | 2021.09.09 |
---|---|
Node.js) 백준 2580번 : 스도쿠 (0) | 2021.09.09 |
Node.js) 백준 15652번 : N과 M (4) (0) | 2021.09.08 |
Node.js) 백준 15651번 : N과 M (3) (0) | 2021.09.08 |
Node.js) 백준 15650번 : N과 M (2) (0) | 2021.09.08 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 면접비
- DB 생성
- node.js
- create databases;
- MOD
- 투포인터
- 최소공통조상
- create db
- 그래프
- MySQL
- 면접질문
- 로드나인
- 동적프로그래밍
- 롱베케이션
- 서버개발
- 서버점검
- BFS
- 다이나믹프로그래밍
- 다이나밍프로그래밍
- 개발자면접
- 은둔청년체험
- 투포인터 연습
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함