Skip to content

Commit 3b1767f

Browse files
committed
BOJ_5107 : 마니또
1 parent 931a12e commit 3b1767f

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

week8/BOJ_5107(마니또).java

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
import java.io.*;
2+
import java.util.*;
3+
4+
public class Main {
5+
6+
public static Map<String, Integer> manitoIndex;
7+
public static int[] parent;
8+
9+
public static void main(String[] args) throws IOException {
10+
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
11+
StringBuilder sb = new StringBuilder();
12+
int t = 1;
13+
while(true) {
14+
int N = Integer.parseInt(br.readLine());
15+
if(N == 0) {
16+
System.out.print(sb);
17+
return;
18+
}
19+
manitoIndex = new HashMap<>();
20+
parent = new int[N+1];
21+
for(int i=1; i<=N; i++) {
22+
parent[i] = i;
23+
}
24+
int num = 0;
25+
Set<Integer> set = new HashSet<>();
26+
for(int i=0; i<N; i++) {
27+
StringTokenizer st = new StringTokenizer(br.readLine());
28+
String manito1 = st.nextToken();
29+
String manito2 = st.nextToken();
30+
if(!manitoIndex.containsKey(manito1)) {
31+
manitoIndex.put(manito1, num++);
32+
}
33+
if(!manitoIndex.containsKey(manito2)) {
34+
manitoIndex.put(manito2, num++);
35+
}
36+
int x = find(parent[manitoIndex.get(manito1)]);
37+
int y = find(parent[manitoIndex.get(manito2)]);
38+
union(x, y);
39+
}
40+
for(int i=1; i<=N; i++) {
41+
if(i != parent[i]) {
42+
set.add(parent[i]);
43+
}
44+
}
45+
sb.append(t++).append(' ').append(set.size()).append('\n');
46+
}
47+
}
48+
49+
public static int find(int x) {
50+
if(parent[x] == x) {
51+
return x;
52+
}
53+
parent[x] = find(parent[x]);
54+
return parent[x];
55+
}
56+
public static void union(int x, int y) {
57+
x = find(x);
58+
y = find(y);
59+
if(x == y) {
60+
return;
61+
}
62+
parent[y] = x;
63+
}
64+
}

0 commit comments

Comments
 (0)