728x90
반응형
https://www.acmicpc.net/problem/2606
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Queue;
import java.util.StringTokenizer;
public class Main {
public static int n, m;
public static List<Integer>[] arr;
public static boolean[] visited;
public static int BFS(int n) {
int cnt = 0;
Queue<Integer> queue = new LinkedList<Integer>();
queue.add(n);
visited[n] = true;
while (!queue.isEmpty()) {
int node = queue.poll();
for (int x : arr[node]) {
if (!visited[x]) {
queue.add(x);
visited[x] = true;
cnt++;
}
}
}
return cnt;
}
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
int n = Integer.parseInt(br.readLine());
int m = Integer.parseInt(br.readLine());
arr = new ArrayList[n + 1];
visited = new boolean[n + 1];
for (int i = 0; i < n + 1; i++) {
arr[i] = new ArrayList<Integer>();
}
for (int i = 0; i < m; i++) {
st = new StringTokenizer(br.readLine());
int node1 = Integer.parseInt(st.nextToken());
int node2 = Integer.parseInt(st.nextToken());
arr[node1].add(node2);
arr[node2].add(node1);
}
System.out.println(BFS(1));
}
}
|
cs |
BFS나 DFS로 풀면되는 문제이다.
728x90
반응형
'알고리즘 > 그래프' 카테고리의 다른 글
[C 백준]실버 3/N과M(2) (0) | 2022.03.19 |
---|---|
[java백준/백트래킹]실버 3/ 15649번 N과 M(1) (0) | 2022.03.06 |
[java 백준] 골드 4/ 1967번 트리의 지름 (0) | 2022.01.21 |
[java 백준] 골드 3/ 1167번 트리의 지름 (0) | 2022.01.19 |
[java 백준] 실버 2/ 11725번 트리의 부모 찾기 (0) | 2021.12.24 |
댓글