티스토리 뷰
https://www.acmicpc.net/problem/1068
node로 풀다가 런타임에러....
내가 입력을 잘못받았나?,, 부터 시작해서 자료구조/알고리즘 외적인 부분?? 에 빠져서 시간낭비.
이 문제 주의할 점.
1. 이진트리가 아니다.
2. 0번 노드가 루트노드가 아니다.
3. 루트노드가 삭제될 수 있다.
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
const node = input[1].trim().split(' ').map(Number);
const del = +input[2]
class Node {
constructor(data) {
this.data = data;
this.parent = null;
this.children = [];
}
}
class Tree {
constructor() {
this.root = null;
}
insert(p, data) {
let newNode = new Node(data);
if (p == -1) {
this.root = newNode;
} else {
let parent = this.find(p);
newNode.parent = parent;
parent.children.push(newNode)
}
}
find(data) {
const q = [this.root]
while (q.length > 0) {
let nowNode = q.shift();
if (nowNode.data == data) {
return nowNode;
} else {
nowNode.children.forEach(node => {
q.push(node);
});
}
}
}
delete(data) {
if (data == this.root.data) {
this.root = null;
return;
}
let delNode = this.find(data);
let parent = delNode.parent;
delNode.parent = null;
parent.children = parent.children.filter(v => v.data != data);
}
findLeaf() {
if (this.root == null) {
return 0;
}
let cnt = 0;
let q = [this.root];
while (q.length > 0) {
let nowNode = q.shift();
if (nowNode.children.length == 0) {
cnt++;
} else {
nowNode.children.forEach(node => {
q.push(node);
});
}
}
return cnt;
}
}
let tree = new Tree();
const nodeObj = node.map((v, i) => {
return {
p: v,
data: i,
}
}).sort((a, b) => a.p - b.p);
let q = [nodeObj[0]];
while (q.length > 0) {
let { p, data } = q.shift();
tree.insert(p, data);
nodeObj.forEach(v => {
if (v.p == data) {
q.push(v)
}
})
}
tree.delete(del)
const answer = tree.findLeaf();
console.log(answer)
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js)백준 17825번: 주사위 윷놀이 (0) | 2022.03.13 |
---|---|
Node.js) 백준 1189번: 컴백홈 (0) | 2022.03.12 |
Node.js) 백준 2636번: 치즈 (0) | 2022.03.10 |
Node.js) 백준 14502번: 연구소 (1) | 2022.03.10 |
Node.js) 백준 2852번: NBA 농구 (0) | 2022.03.09 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- node.js
- MOD
- 투포인터
- BFS
- 투포인터 연습
- 롱베케이션
- 서버점검
- 면접비
- 서버개발
- 다이나믹프로그래밍
- create databases;
- MySQL
- 로드나인
- 최소공통조상
- 개발자면접
- 그래프
- 은둔청년체험
- DB 생성
- 다이나밍프로그래밍
- 면접질문
- create db
- 동적프로그래밍
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함