-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBOJ2606.java
60 lines (48 loc) · 1.46 KB
/
BOJ2606.java
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
package main.week8.BOJ2606;
import java.util.Scanner;
/**
* 바이러스, https://www.acmicpc.net/problem/2606, 유니온파인드(그래프)
*
* @author hazel
*/
public class BOJ2606 {
static int[] parent;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt(); //7
int m = sc.nextInt(); //6
parent = new int[n + 1];
for (int i = 1; i <= n; i++) { //1부터 7까지
parent[i] = i;
}
for (int i = 1; i <= m; i++) {
int x = sc.nextInt();
int y = sc.nextInt();
union(x, y);
}
//System.out.println(Arrays.toString(parent));
int ans = 0;
//1번 컴퓨터가 걸린 바이러스의 개수를 체크해야하므로 2번부터 시작
for (int i = 2; i <= n; i++) {
if (find(i) == find(1)) {
ans++;
}
}
System.out.println(ans);
}
//매개변수로 받은 원소 a의 부모 노드를 찾는 함수
public static int find(int a) {
if (parent[a] == a) { //a의 부모노드가 a라면 그대로 리턴
return a;
} else { //아니라면 부모 노드를 찾음 -> 경로압축
return parent[a] = find(parent[a]); //
}
}
public static void union(int a, int b) {
a = find(a);
b = find(b);
if (a != b) {
parent[b] = a;
}
}
}