티스토리 뷰
https://www.acmicpc.net/problem/13913
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, E] = fs.readFileSync("./dev/stdin").toString().trim().split(" ").map(Number);
function solve(start, end) {
let dist = Array.from(Array(100001), () => null)
let parent = Array.from(Array(100001), () => 0)
if (start == end) {
console.log(0);
console.log(start);
return;
} else {
let q = new Queue();
q.push(S);
dist[S] = 0;
parent[S] = null;
while (q.length > 0) { //큐에 뭐가 들어 있으면
const now = q.pop(); //꺼내서
if (now == end) {
let ele = now;
const answer = [];
while (ele != null) {
answer.unshift(ele);
ele = parent[ele];
}
console.log(dist[now])
console.log(answer.join(' '))
return;
}
const next = [now + 1, now - 1, now * 2]
next.forEach(v => {
if (v >= 0 && v <= 100000 && dist[v] == null) {
q.push(v);
dist[v] = dist[now] + 1;
parent[v] = now;
}
})
}
}
}
solve(S, E);
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 14620번: 꽃길 (0) | 2022.03.22 |
---|---|
Node.js) 백준 12851번: 숨바꼭질 2 (0) | 2022.03.22 |
Node.js)백준 16637번: 괄호 추가하기 (0) | 2022.03.21 |
Node.js)백준 12869번: 뮤탈리스크 (0) | 2022.03.17 |
Node.js) 백준 4179번: 불! @@@@@ (0) | 2022.03.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- DB 생성
- MySQL
- 서버개발
- 면접질문
- 최소공통조상
- create databases;
- 동적프로그래밍
- 투포인터
- 은둔청년체험
- BFS
- 다이나믹프로그래밍
- 개발자면접
- create db
- 다이나밍프로그래밍
- MOD
- 그래프
- 로드나인
- 서버점검
- 면접비
- node.js
- 투포인터 연습
- 롱베케이션
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함