-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
50 lines (40 loc) Β· 1.35 KB
/
Main.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
package Graph.P16398;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import java.util.PriorityQueue;
import java.util.StringTokenizer;
public class Main {
static int N;
static int[] root;
static PriorityQueue<int[]> pq = new PriorityQueue<>(((o1, o2) -> o1[2] - o2[2]));
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/Graph/P16398/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
root = new int[N+1];
for (int i = 1; i <= N; i++) {
StringTokenizer st = new StringTokenizer(br.readLine());
for (int j = 1; j <= N; j++) {
int c = Integer.parseInt(st.nextToken());
if (i < j) pq.offer(new int[]{i, j, c});
}
root[i] = i;
}
long cost = 0;
while (!pq.isEmpty()) {
int[] c = pq.poll();
if (find(c[0]) == find(c[1])) continue;
merge(c[0], c[1]);
cost += c[2];
}
System.out.println(cost);
}
static int find(int n) {
if (root[n] == n) return n;
return root[n] = find(root[n]);
}
static void merge(int a, int b) {
root[find(a)] = find(b);
}
}