-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1774.cpp
46 lines (46 loc) · 1.13 KB
/
1774.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/1774
#include <algorithm>
#include <cstdio>
#define MAX 300
#define MP make_pair
using namespace std;
typedef pair<int, int> ii;
typedef pair<int, ii> iii;
iii grafo[MAX];
int pai[MAX], peso[MAX];
int find(int x) {
if (x == pai[x]) return x;
return pai[x] = find(pai[x]);
}
void join(int x, int y) {
x = find(x);
y = find(y);
if (x == y) return;
if (peso[x] == peso[y]) {
pai[x] = y;
peso[y]++;
}
if (peso[x] > peso[y])
pai[y] = x;
else
pai[x] = y;
}
int main() {
int n, m, resposta = 0;
scanf("%d %d", &n, &m);
for (int i = 1; i <= n; i++) pai[i] = i;
for (int i = 0; i < m; i++) {
int u, v, peso;
scanf("%d %d %d", &u, &v, &peso);
grafo[i] = MP(peso, MP(u, v));
}
sort(grafo, grafo + m);
for (int i = 0; i < m; i++)
if (find(grafo[i].second.first) != find(grafo[i].second.second)) {
resposta += grafo[i].first;
join(grafo[i].second.first, grafo[i].second.second);
}
printf("%d\n", resposta);
return 0;
}