-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1887.cpp
137 lines (137 loc) · 4.56 KB
/
1887.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/1887
#include <bits/stdc++.h>
using namespace std;
typedef tuple<int, int, int, int> quadra;
const int MAXN = 30100;
const int BUCKET = 250;
vector<quadra> arestas, especiais;
vector<int> marca_antes, marca_depois;
int pai[MAXN], peso[MAXN], n, m, q, custo, last[MAXN], interacao,
pilha_pai[MAXN], pilha_peso[MAXN];
void zerar() {
for (int i = 1; i <= n; i++) pai[i] = i, peso[i] = 1;
}
void constroi_pilha() {
for (int i = 1; i <= n; i++) {
pilha_pai[i] = pai[i];
pilha_peso[i] = peso[i];
last[i] = interacao;
}
}
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 (peso[x] < peso[y]) swap(x, y);
peso[x] += peso[y];
pai[y] = x;
}
int find_pilha(int x) {
if (last[x] != interacao) {
last[x] = interacao;
pilha_pai[x] = pai[x];
pilha_peso[x] = peso[x];
}
if (x == pilha_pai[x]) return x;
return pilha_pai[x] = find_pilha(pilha_pai[x]);
}
void join_pilha(int x, int y) {
x = find_pilha(x);
y = find_pilha(y);
if (pilha_peso[x] < pilha_peso[y]) swap(x, y);
pilha_pai[y] = x;
pilha_peso[x] += pilha_peso[y];
}
int main() {
int TC;
scanf("%d", &TC);
while (TC--) {
arestas.clear();
marca_depois.clear();
marca_antes.clear();
interacao = 0;
scanf("%d %d %d", &n, &m, &q);
for (int i = 1; i <= m; i++) {
int u, v, w;
scanf("%d %d %d", &u, &v, &w);
arestas.push_back(make_tuple(w, u, v, -1));
marca_depois.push_back(0);
marca_antes.push_back(0);
}
for (int i = 0; i < q; i++) {
int u, v, w;
scanf("%d %d %d", &u, &v, &w);
arestas.push_back(make_tuple(w, u, v, i));
marca_depois.push_back(0);
marca_antes.push_back(0);
}
int tot_baldes = (q - 1) / BUCKET;
sort(arestas.begin(), arestas.end());
for (int balde_davez = 0; balde_davez <= tot_baldes; balde_davez++) {
zerar();
especiais.clear();
custo = 0;
int lo = balde_davez * BUCKET;
int hi = min((balde_davez + 1) * BUCKET - 1, q - 1);
for (int i = 0; i < arestas.size(); i++)
marca_antes[i] = marca_depois[i] = 0;
for (int i = 0; i < arestas.size(); i++) {
int u = get<1>(arestas[i]), v = get<2>(arestas[i]),
t = get<3>(arestas[i]), w = get<0>(arestas[i]);
if (t >= lo) continue;
if (find(u) != find(v)) {
join(u, v);
marca_antes[i] = 1;
}
}
zerar();
for (int i = 0; i < arestas.size(); i++) {
int u = get<1>(arestas[i]), v = get<2>(arestas[i]),
t = get<3>(arestas[i]), w = get<0>(arestas[i]);
if (t > hi) continue;
if (find(u) != find(v)) {
join(u, v);
marca_depois[i] = 1;
}
}
zerar();
for (int i = 0; i < arestas.size(); i++) {
int u = get<1>(arestas[i]), v = get<2>(arestas[i]),
t = get<3>(arestas[i]), w = get<0>(arestas[i]);
if (t > hi) continue;
if (lo <= t && t <= hi) {
especiais.push_back(arestas[i]);
}
if (marca_antes[i] == 0) continue;
if (marca_depois[i] == 1) {
// printf("Sempre U %d V %d W %d\n",u,v,w);
join(u, v);
custo += w;
} else {
especiais.push_back(arestas[i]);
}
}
constroi_pilha();
for (int tempo = lo; tempo <= hi; tempo++) {
int delta = 0;
interacao++;
for (int i = 0; i < especiais.size(); i++) {
int u = get<1>(especiais[i]), v = get<2>(especiais[i]),
t = get<3>(especiais[i]), w = get<0>(especiais[i]);
if (t > tempo) continue;
if (find_pilha(u) != find_pilha(v)) {
// printf("U %d V %d W %d\n",u,v,w);
join_pilha(u, v);
delta += w;
}
}
printf("%d\n", custo + delta);
}
}
}
return 0;
}