티스토리 뷰
https://www.acmicpc.net/problem/1697
const fs = require('fs');
const [N,K] = fs.readFileSync("./dev/stdin").toString().trim().split(" ").map(v=>+v);
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;
}
}
function check(n){
return !isVisited[n]
}
let answer = 0;
let isVisited = new Array(100001).fill(false);
let q = new Queue();
q.push([N,0]);
isVisited[N] = true;
while(true){
let [now,sec] = q.pop();
if(now==K){
answer = sec;
break;
}else{
if(now-1>=0 && check(now-1)){
isVisited[now-1] = true;
q.push([now-1,sec+1])
}
if(now+1<100001 && check(now+1)){
isVisited[now+1] = true;
q.push([now+1,sec+1])
}
if(now*2<100001 && check(now*2)){
isVisited[now*2] = true;
q.push([now*2,sec+1])
}
}
}
console.log(answer)
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1707 : 이분 그래프 (시간초과 해결방법) (0) | 2021.09.17 |
---|---|
Node.js) 백준 7562번 : 나이트의 이동 (0) | 2021.09.17 |
Node.js) 백준 7569번 : 토마토 (0) | 2021.09.16 |
Node.js) 백준 2178번 : 미로 탐색 (0) | 2021.09.16 |
Node.js) 백준 7576번 : 토마토 (+ 백준 Node.js 시간 초과 팁) (0) | 2021.09.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- MySQL
- 면접비
- node.js
- 롱베케이션
- 개발자면접
- MOD
- 로드나인
- 은둔청년체험
- 서버개발
- BFS
- 동적프로그래밍
- 최소공통조상
- 면접질문
- 다이나밍프로그래밍
- 다이나믹프로그래밍
- 투포인터 연습
- create db
- 그래프
- 투포인터
- 서버점검
- DB 생성
- create databases;
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함