-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path2127.cpp
88 lines (88 loc) · 2.31 KB
/
2127.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
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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/2127
#include <cstdio>
#include <queue>
#define MAXN 1100
#define MP make_pair
#define gc getchar_unlocked
void getint(int &x) {
register int c = gc();
x = 0;
for (; (c < 48 || c > 57); c = gc())
;
for (; c > 47 && c < 58; c = gc()) {
x = (x << 1) + (x << 3) + c - 48;
}
}
using namespace std;
typedef pair<int, int> ii;
int pai[MAXN], peso[MAXN], conjuntos;
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;
conjuntos--;
if (peso[x] < peso[y])
pai[x] = y;
else if (peso[x] > peso[y])
pai[y] = x;
else {
pai[x] = y;
peso[y]++;
}
}
int main() {
int n, m, instancia = 1;
while (scanf("%d %d", &n, &m) != EOF) {
int resposta = 0;
conjuntos = n - 1;
printf("Instancia %d\n", instancia++);
queue<ii> fila1, fila2, fila3;
for (int i = 1; i <= n; i++) {
peso[i] = 0;
pai[i] = i;
}
for (int i = 0; i < m; i++) {
int u, v, peso;
getint(u);
getint(v);
getint(peso);
if (peso == 1235)
fila1.push(MP(u, v));
else if (peso == 8977)
fila2.push(MP(u, v));
else
fila3.push(MP(u, v));
}
while (conjuntos && !fila1.empty()) {
ii davez = fila1.front();
fila1.pop();
if (find(davez.first) != find(davez.second)) {
join(davez.first, davez.second);
resposta += 1235;
}
}
while (conjuntos && !fila2.empty()) {
ii davez = fila2.front();
fila2.pop();
if (find(davez.first) != find(davez.second)) {
join(davez.first, davez.second);
resposta += 8977;
}
}
while (conjuntos && !fila3.empty()) {
ii davez = fila3.front();
fila3.pop();
if (find(davez.first) != find(davez.second)) {
join(davez.first, davez.second);
resposta += 10923;
}
}
printf("%d\n\n", resposta);
}
return 0;
}