티스토리 뷰
https://www.acmicpc.net/problem/20040
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 (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')
.map((v) => v.split(' ').map(Number));
const [N, M] = input[0];
const uf = new UF(N + 1);
for (let i = 1; i <= M; i++) {
const [x, y] = input[i];
const px = uf.find(x);
const py = uf.find(y);
if (px == py) {
console.log(i);
process.exit(0);
} else {
uf.union(x, y);
}
}
console.log(0);
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 13975번: 파일합치기 3 (1) | 2023.11.09 |
---|---|
Node.js) 백준 16562번: 친구비 (1) | 2023.11.09 |
Node.js) 백준 5052번: 전화번호 목록 (1) | 2023.11.02 |
Node.js) 백준 1043번: 거짓말 (1) | 2023.11.01 |
Node.js) 백준 1976번: 여행 가자 (0) | 2023.10.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 개발자면접
- 롱베케이션
- 다이나믹프로그래밍
- MOD
- BFS
- 은둔청년체험
- DB 생성
- 투포인터 연습
- 면접비
- create databases;
- 면접질문
- 최소공통조상
- 서버개발
- node.js
- 로드나인
- create db
- 다이나밍프로그래밍
- 그래프
- 서버점검
- 투포인터
- 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 |
글 보관함