티스토리 뷰
https://www.acmicpc.net/problem/11724
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
class Node {
constructor(item) {
this.item = item;
this.next = null;
}
}
class Queue {
constructor() {
this.head = null;
this.tail = null;
this.length = 0;
}
push(item) {
const node = new Node(item)
if (this.head === null) {
this.head = node;
} else {
this.tail.next = node;
}
this.tail = node;
this.length += 1;
}
pop() {
const popItem = this.head.item;
this.head = this.head.next;
this.length -= 1;
return popItem;
}
}
const edge = input.map(v => v.split(' ').map(v => +v))
const [N, E] = edge.shift();
let adj = Array.from(Array(N + 1), () => []);
let isVisited = new Array(N + 1).fill(false)
edge.forEach(x => {
const [u, v] = x;
adj[v].push(u);
adj[u].push(v);
})
let connect = 0;
let q = new Queue();
for (let i = 1; i <= N; i++) {
if (!isVisited[i]) {
isVisited[i] = true;
connect++;
q.push(i);
while (q.length > 0) {
let now = q.pop();
adj[now].forEach(v => {
if (!isVisited[v]) {
q.push(v);
isVisited[v] = true;
}
})
}
}
}
console.log(connect)
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 15829번: Hashing (0) | 2021.09.23 |
---|---|
Node.js) 백준 9020번: 골드바흐의 추측 (0) | 2021.09.21 |
Node.js) 백준 11558번: The Game of Death (0) | 2021.09.21 |
Node.js)백준 1388번: 바닥 장식 (0) | 2021.09.21 |
Node.js) 백준 14397 번: 해변 (0) | 2021.09.20 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- create db
- 다이나믹프로그래밍
- 동적프로그래밍
- node.js
- BFS
- 그래프
- 면접비
- 투포인터
- 로드나인
- 최소공통조상
- 개발자면접
- MySQL
- create databases;
- 서버점검
- 은둔청년체험
- 투포인터 연습
- MOD
- 다이나밍프로그래밍
- 서버개발
- 면접질문
- 롱베케이션
- 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 |
글 보관함