-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path16562.cpp
62 lines (56 loc) · 1.05 KB
/
16562.cpp
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
//
// Created by kdongha on 2020/01/28.
//
#include <bits/stdc++.h>
int N, M, K, ans;
int parent[10001];
int cost[10001];
int find(int i) {
if (parent[i] != i) {
parent[i] = find(parent[i]);
}
return parent[i];
}
void merge(int i, int j) {
i = find(i);
j = find(j);
if (i != j) {
if (cost[i] < cost[j]) {
parent[j] = i;
} else {
parent[i] = j;
}
}
}
void solve() {
std::cin >> N >> M >> K;
for (int i = 1; i <= N; i++) {
parent[i] = i;
std::cin >> cost[i];
}
for (int i = 0; i < M; i++) {
int a, b;
std::cin >> a >> b;
merge(a, b);
}
for (int i = 1; i <= N; i++) {
if (find(i) == i) {
ans += cost[i];
if (K < ans) {
break;
}
}
}
if (K >= ans) {
std::cout << ans;
} else {
std::cout << "Oh no";
}
}
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
solve();
return 0;
}