## 접근
- 이 문제는 대놓고 Union-Find 문제이다. Union-Find의 재귀호출 방식을 이용해서, 코드를 응용할 수 있는지 묻고 있다.
- 병합 과정의 2.를 이해가 쉽지 않았다. A 클러스트의 새로운 센터가 j가 된다는 것을 의미하는 내용인데, 처음 읽을 때는, B 클러스터의 별도의 센터가 존재할 수도 있다고 생각했다.
- Union시에 I의 새로운 센터를 J로 만들어 주고, I의 거리를 갱신해준다. 기업 I와 현재 I의 센터까지의 거리를 출력할 때는 Find 연산을 통해서, 연결된 모든 값의 거리를 갱신해줘야 한다.
## 해설코드
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
63
64
65
|
import java.util.*;
import java.io.*;
import java.lang.*;
public class Main{
static BufferedReader br;
static BufferedWriter bw;
static int T, I, J, N;
static int[] root;
static int[] dis;
static String str;
static int find(int x){
if(x == root[x])
return x;
else{
int tmp = find(root[x]);
dis[x] += dis[root[x]];
root[x] = tmp;
return tmp;
}
}
static void union(int x, int y){
dis[x] = Math.abs(x - y) % 1000;
root[x] = y;
}
public static void main(String []args) throws java.lang.Exception{
br = new BufferedReader(new InputStreamReader(System.in));
bw = new BufferedWriter(new OutputStreamWriter(System.out));
T = Integer.valueOf(br.readLine());
for(int i = 1; i <= T; i++){
N = Integer.valueOf(br.readLine());
root = new int[N + 1];
dis = new int[N + 1];
for(int j = 1; j <= N; j++) {
root[j] = j;
dis[j] = 0;
}
while(!(str = br.readLine()).equals("O")){
String[] sArr = str.split(" ");
if(sArr[0].equals("E")){
I = Integer.valueOf(sArr[1]);
find(I);
bw.write(dis[I] + "\n");
}else{
I = Integer.valueOf(sArr[1]);
J = Integer.valueOf(sArr[2]);
union(I, J);
}
}
}
bw.flush();
}
}
|
'알고리즘 > 백준' 카테고리의 다른 글
[BOJ 6591] 이항 숏다운 (0) | 2020.11.14 |
---|---|
[2019 카카오 개발자 겨울 인턴십] 징검다리 건너기(Java, 간단한 코드, Union-Find) (0) | 2020.09.07 |
[BOJ 10775] 공항(Union-Find, Java) (0) | 2020.09.06 |
[BOJ 9938] 방 청소(Java, Union-Find, 문제 이해하기) (0) | 2020.09.05 |
[BOJ 4195] 친구 네트워크(Java, Union-Find, 간단한 코드) (0) | 2020.09.03 |