티스토리 뷰
https://www.acmicpc.net/problem/17071
class Node {
constructor(item) {
this.item = item;
this.next = null;
}
}
class Queue {
constructor() {
this.head = null;
this.tail = null;
this.length = 0;
}
push(item) {
const node = new Node(item)
if (this.head == null) {
this.head = node;
} else {
this.tail.next = node;
}
this.tail = node;
this.length += 1;
}
pop() {
const popItem = this.head;
this.head = this.head.next;
this.length -= 1;
return popItem.item;
}
}
const fs = require('fs');
const [S, K] = fs.readFileSync("./dev/stdin").toString().trim().split(" ").map(Number);
function solve(sb, bro) {
if (sb == bro) {
return 0;
}
let visited = Array.from(Array(2), () => Array(500001).fill(-1))
let cnt = 1;
let q = new Queue();
q.push(sb);
visited[0][sb] = 0;
while (q.length > 0) {
bro += cnt;
const L = q.length;
for (let i = 0; i < L; i++) {
const now = q.pop();
const next = [now + 1, now - 1, now * 2]
for (let i = 0; i < 3; i++) {
if (next[i] >= 0 && next[i] <= 500000 && visited[cnt % 2][next[i]] == -1) {
visited[cnt % 2][next[i]] = cnt;
if (next[i] == bro) {
return cnt;
}
q.push(next[i]);
}
}
}
if (bro > 500000) {
break;
}
if (visited[cnt % 2][bro] != -1) {
return cnt;
}
cnt++;
}
return -1;
}
const answer = solve(S, K);
console.log(answer)
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 3197번: 백조의 호수 (0) | 2022.03.31 |
---|---|
Node.js)백준 14497번: 주난의 난(難) (0) | 2022.03.30 |
Node.js) 백준 14620번: 꽃길 (0) | 2022.03.22 |
Node.js) 백준 12851번: 숨바꼭질 2 (0) | 2022.03.22 |
Node.js) 백준 13913번: 숨바꼭질 4 (0) | 2022.03.22 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- node.js
- DB 생성
- 로드나인
- 다이나믹프로그래밍
- 서버점검
- 투포인터 연습
- MySQL
- 그래프
- create db
- 면접질문
- 동적프로그래밍
- create databases;
- 서버개발
- 롱베케이션
- 개발자면접
- 은둔청년체험
- 면접비
- 최소공통조상
- BFS
- 다이나밍프로그래밍
- 투포인터
- MOD
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함