티스토리 뷰
https://www.acmicpc.net/problem/2233
class Apple {
constructor(pos1, parent) {
this.position = [pos1];
this.parent = parent;
this.height = parent?.height ? parent.height + 1 : 1;
}
mark(pos2) {
this.position.push(pos2);
}
}
const input = require('fs').readFileSync('./dev/stdin').toString().trim().split('\n');
const N = +input[0];
const binary = input[1].trim();
const [t1, t2] = input[2].split(' ').map(Number);
const answer = [];
const applePosition = new Array(2 * N + 1).fill(null);
const root = new Apple(1, null);
let now = root;
applePosition[1] = root;
for (let i = 1; i < binary.length; i++) {
let pos = i + 1;
if (binary[i] == '0') {
const newNode = new Apple(pos, now);
applePosition[pos] = newNode;
now = newNode;
} else {
applePosition[pos] = now;
now.mark(pos);
now = now.parent;
}
}
let A = applePosition[t1];
let B = applePosition[t2];
while (A.height > B.height) {
A = A.parent;
}
while (B.height > A.height) {
B = B.parent;
}
while (A.position[0] != B.position[0]) {
A = A.parent;
B = B.parent;
}
console.log(A.position.join(' '));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js)백준 15624번: 피보나치수7 (0) | 2024.07.12 |
---|---|
Node.js)백준 13699번: 점화식 (0) | 2024.07.12 |
Node.js)백준 11437번 : LCA (0) | 2024.07.10 |
Node.js) 백준 24955번: 숫자 이어 붙이기 (0) | 2024.07.10 |
Node.js) 백준 3584: 가장 가까운 공통 조상 (0) | 2024.07.09 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 동적프로그래밍
- 다이나믹프로그래밍
- 롱베케이션
- DB 생성
- create db
- 투포인터 연습
- MOD
- 면접질문
- 서버개발
- 면접비
- 로드나인
- 그래프
- BFS
- MySQL
- 다이나밍프로그래밍
- 개발자면접
- node.js
- 서버점검
- 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 |
글 보관함