티스토리 뷰
https://www.acmicpc.net/problem/10216
class Edge {
constructor() {
this.src = 0;
this.dest = 0;
}
}
class SubSet {
constructor(i) {
this.parent = i;
this.rank = 0;
}
}
class UF {
constructor(N) {
this.subsets = Array.from(Array(N), (_, i) => {
return new SubSet(i);
});
}
find(i) {
if (this.subsets[i].parent == i) {
return i;
} else {
this.subsets[i].parent = this.find(this.subsets[i].parent);
return this.subsets[i].parent;
}
}
union(x, y) {
const xroot = this.find(x);
const yroot = this.find(y);
if (xroot == yroot) return;
if (this.subsets[xroot].rank < this.subsets[yroot].rank) {
this.subsets[xroot].parent = yroot;
} else if (this.subsets[xroot].rank > this.subsets[yroot].rank) {
this.subsets[yroot].parent = xroot;
} else {
this.subsets[xroot].parent = yroot;
this.subsets[yroot].rank++;
}
}
}
const input = require('fs').readFileSync('./dev/stdin').toString().trim().split('\n');
let index = 0;
const T = +input[index++];
for (let t = 0; t < T; t++) {
const C = +input[index++];
const enemies = [];
const uf = new UF(C);
for (let c = 0; c < C; c++) {
enemies.push(input[index + c].split(' ').map(Number));
}
for (let i = 0; i < C; i++) {
for (let j = i + 1; j < C; j++) {
if (check(enemies[i], enemies[j])) {
uf.union(i, j);
}
}
}
const set = new Set();
for (let k = 0; k < C; k++) {
set.add(uf.find(k));
}
console.log(set.size);
index += C;
}
function check(a, b) {
const [ax, ay, ar] = a;
const [bx, by, br] = b;
const r = Math.sqrt(Math.pow(ax - bx, 2) + Math.pow(ay - by, 2));
if (ar + br >= r) return true;
else return false;
}
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 2015번: 수들의 합 4 (0) | 2023.11.15 |
---|---|
Node.js) 백준 3078번: 좋은 친구 (0) | 2023.11.14 |
Node.js) 백준 16120번: PPAP (0) | 2023.11.09 |
Node.js) 백준 13975번: 파일합치기 3 (1) | 2023.11.09 |
Node.js) 백준 16562번: 친구비 (1) | 2023.11.09 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- node.js
- MOD
- 은둔청년체험
- 면접비
- 동적프로그래밍
- MySQL
- 그래프
- 면접질문
- BFS
- 투포인터 연습
- create databases;
- 투포인터
- 롱베케이션
- 다이나밍프로그래밍
- 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 |
글 보관함