티스토리 뷰
https://www.acmicpc.net/problem/11437
// https://www.acmicpc.net/problem/11437
class Node {
constructor(index) {
this.index = index;
this.parent = null;
this.height = null;
this.adj = [];
}
setHeight(p) {
this.parent = p;
this.height = p == -1 ? 0 : nodes[p].height + 1;
this.adj.forEach((child) => {
if (child != this.parent) {
nodes[child].setHeight(this.index);
}
});
}
}
const input = require('fs')
.readFileSync('./dev/stdin')
.toString()
.trim()
.split('\n')
.map((v) => v.split(' ').map(Number));
const N = input.shift()[0];
const nodes = Array.from(new Array(N), (_, i) => new Node(i));
const edges = input.splice(0, N - 1);
edges.forEach(([a, b]) => {
nodes[a - 1].adj.push(b - 1);
nodes[b - 1].adj.push(a - 1);
});
nodes[0].setHeight(-1);
// console.log(nodes.map((v) => v.height));
const T = input.shift();
const tc = input;
const answer = tc.map((v) => {
const [a, b] = v.map((w) => w - 1);
let A = nodes[a];
let B = nodes[b];
while (A.height > B.height) {
A = nodes[A.parent];
}
while (B.height > A.height) {
B = nodes[B.parent];
}
while (B.index != A.index) {
A = nodes[A.parent];
B = nodes[B.parent];
}
return A.index + 1;
});
console.log(answer.join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js)백준 13699번: 점화식 (0) | 2024.07.12 |
---|---|
Node.js)백준 2233번: 사과나무 (0) | 2024.07.11 |
Node.js) 백준 24955번: 숫자 이어 붙이기 (0) | 2024.07.10 |
Node.js) 백준 3584: 가장 가까운 공통 조상 (0) | 2024.07.09 |
Node.js) 백준 6615: 콜라츠 추측 (0) | 2024.07.09 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 서버개발
- 다이나믹프로그래밍
- 다이나밍프로그래밍
- 서버점검
- BFS
- 면접비
- MOD
- 면접질문
- create db
- 은둔청년체험
- 로드나인
- 투포인터
- 그래프
- DB 생성
- 동적프로그래밍
- node.js
- create databases;
- MySQL
- 최소공통조상
- 롱베케이션
- 투포인터 연습
- 개발자면접
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함