티스토리 뷰
https://www.acmicpc.net/problem/17825
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim().split(" ").map(Number);
const point = [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 13, 16, 19, 22, 24, 25, 26, 27, 28, 30, 35, 0]
const next = [
[1, 2, 3, 4, 5],
[2, 3, 4, 5, 6],
[3, 4, 5, 6, 7],
[4, 5, 6, 7, 8],
[5, 6, 7, 8, 9],
[21, 22, 23, 26, 30],
[7, 8, 9, 10, 11],
[8, 9, 10, 11, 12],
[9, 10, 11, 12, 13],
[10, 11, 12, 13, 14],
[24, 25, 26, 30, 31],
[12, 13, 14, 15, 16],
[13, 14, 15, 16, 17],
[14, 15, 16, 17, 18],
[15, 16, 17, 18, 19],
[29, 28, 27, 26, 30],
[17, 18, 19, 20, 32],
[18, 19, 20, 32, 32],
[19, 20, 32, 32, 32],
[20, 32, 32, 32, 32],
[32, 32, 32, 32, 32],///
[22, 23, 26, 30, 31],
[23, 26, 30, 31, 20],
[26, 30, 31, 20, 32],
[25, 26, 30, 31, 20],
[26, 30, 31, 20, 32],
[30, 31, 20, 32, 32],
[26, 30, 31, 20, 32],
[27, 26, 30, 31, 20],
[28, 27, 26, 30, 31],
[31, 20, 32, 32, 32],
[20, 32, 32, 32, 32],
[32, 32, 32, 32, 32]
]
//도착
let max = 0;
for (let i = 0; i < 4; i++) {
move(i, 0, [0, 0, 0, 0], 0)
}
console.log(max);
function move(unit, cnt, location, score) {
//10번 돌면 그만
if (cnt == 10) {
max = Math.max(max, score)
return;
}
// 선택된 말이 도착점에 있으면 그만
const nowLocation = location[unit];
if (nowLocation == 32) {
return;
}
// 선택된 위치의 다음 위치 계산
const nextLocation = next[nowLocation][input[cnt] - 1];
// 다음 위치에 이미 말이 있으면 그만
if (location.filter(v => v != 32).includes(nextLocation)) {
return;
} else {
const newLocation = [...location];
newLocation[unit] = nextLocation
const newScore = score + point[nextLocation]
for (let i = 0; i < 4; i++) {
move(i, cnt + 1, newLocation, newScore)
}
}
}
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 2589번: 보물섬 (0) | 2022.03.13 |
---|---|
Node.js)백준 17136번: 색종이 붙이기 (0) | 2022.03.13 |
Node.js) 백준 1189번: 컴백홈 (0) | 2022.03.12 |
Node.js) 백준 1068번: 트리 (0) | 2022.03.11 |
Node.js) 백준 2636번: 치즈 (0) | 2022.03.10 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 그래프
- MySQL
- DB 생성
- node.js
- 다이나믹프로그래밍
- 서버점검
- 은둔청년체험
- 동적프로그래밍
- create db
- 면접비
- create databases;
- 로드나인
- 서버개발
- 면접질문
- 투포인터
- 최소공통조상
- MOD
- 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 | 31 |
글 보관함