Algorithm/BOJ
[BOJ] 나만 안되는 연애(JAVA)
goakgoak
2021. 2. 2. 20:46
[14621] 나만 안되는 연애
Solution
- info 배열에 각 노드(대학)의 성별 정보를 저장한 다음 PQ<Edge>에 성별이 서로 다른 대학을 잇는 간선만 추가해서 최소 신장 트리를 만든다.
- answer = 최소 신장 트리를 이루는 모든 간선 비용의 합
소스코드
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
public class Main {
static int n, m, answer;
static int[] info, parents;
static List<Edge> graph;
static PriorityQueue<Edge> pq;
static class Edge implements Comparable<Edge> {
private int from;
private int to;
private int d;
public Edge(int from, int to, int d) {
this.from = from;
this.to = to;
this.d = d;
}
@Override
public int compareTo(Edge o) {
return this.d - o.d;
}
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
n = stoi(st.nextToken());
m = stoi(st.nextToken());
info = new int[n + 1];
parents = new int[n + 1];
graph = new ArrayList<>();
st = new StringTokenizer(br.readLine());
for (int i = 1; i <= n; i++) {
if (st.nextToken().charAt(0) == 'M') {
info[i] = 0;
} else {
info[i] = 1;
}
}
pq = new PriorityQueue<>();
int from, to, d;
for (int i = 0; i < m; i++) {
st = new StringTokenizer(br.readLine());
from = stoi(st.nextToken());
to = stoi(st.nextToken());
d = stoi(st.nextToken());
if (info[from] != info[to]) {
pq.offer(new Edge(from, to, d));
}
}
for (int i = 0; i <= n; i++) {
parents[i] = i;
}
int count = 0;
while (!pq.isEmpty()) {
if (count == n - 1) {
break;
}
Edge edge = pq.poll();
if (find(edge.from) != find(edge.to)) {
union(edge.from, edge.to);
graph.add(edge);
count++;
}
}
for(Edge edge : graph){
answer+= edge.d;
}
System.out.println(count < n-1 ? -1 : answer);
}
private static void union(int a, int b) {
a = find(a);
b = find(b);
if (a != b) {
parents[b] = a;
}
}
private static int find(int a) {
if (parents[a] == a) {
return a;
}
return parents[a] = find(parents[a]);
}
private static int stoi(String s) {
return Integer.parseInt(s);
}
}
|
cs |