티스토리 뷰
https://www.acmicpc.net/problem/2606
const fs = require('fs');
const [c,_, ...arr] = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
const C = +c;
const network = arr.map(v=>v.split(' ').map(w=>+w));
class Graph{
constructor(v){
this.vertices = v;
this.edge = 0;
this.edgeTo = [];
this.adj = [];
this.marked = [];
this.route=[];
for(let i =0; i<=this.vertices; i++){
this.marked[i] = false;
this.adj[i] = [];
}
}
addEdge(v,w){
this.adj[v].push(w);
this.adj[w].push(v);
this.edge++;
}
dfs(v){
this.marked[v] = true;
this.route.push(v)
this.adj[v].forEach(w=>{
if(!this.marked[w]){
this.dfs(w);
}
})
}
bfs(s){
let q = [];
this.marked[s] = true;
q.push(s);
while(q.length>0){
let v =q.shift();
this.route.push(v);
this.adj[v].forEach(w=>{
if(!this.marked[w]){
this.edgeTo[w]=v;
this.marked[w]=true;
q.push(w)
}
})
}
}
}
let graph = new Graph(C);
network.forEach(v=>{
graph.addEdge(v[0],v[1])
})
graph.bfs(1);
const answer = graph.route.length-1
console.log(answer);
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1012번 : 유기농 배추 (0) | 2021.09.16 |
---|---|
Node.js) 백준 2667번 : 단지 번호 붙이기 (0) | 2021.09.16 |
Node.js)백준 1260번 : DFS와 BFS (0) | 2021.09.16 |
Node.js) 백준 11286번 : 절댓값 힙 (0) | 2021.09.16 |
Node.js) 백준 1927번 : 최소 힙 (0) | 2021.09.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- create db
- DB 생성
- 서버점검
- 면접비
- create databases;
- 투포인터
- 투포인터 연습
- node.js
- BFS
- MySQL
- 은둔청년체험
- 서버개발
- 최소공통조상
- 동적프로그래밍
- 다이나밍프로그래밍
- 다이나믹프로그래밍
- MOD
- 면접질문
- 개발자면접
- 그래프
- 로드나인
- 롱베케이션
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함