# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1060931 | sleepntsheep | Reconstruction Project (JOI22_reconstruction) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
#include <array>
using namespace std;
using ll = long long;
template <typename T, int sz>
using ar = array<T, sz>;
const int N = 505, M = 1010;
int n, m, q, ds[N];
ll mst;
ar<int, 3> e[M];
int ds_find(int i) {
return (ds[i] < 0) ? i : (ds[i] = ds_find(ds[i]));
}
void ds_unite(int i, int j, int w) {
i = ds_find(i);
j = ds_find(j);
if (i == j) return;
mst += w;
if (-ds[i] > -ds[j]) swap(i, j);
ds[j] += ds[i];
ds[i] = j;
}
int main() {
scanf("%d%d", &n, &m);
for (int i = 0; i < m; ++i)
scanf("%d%d%d", &e[i][1], &e[i][2], &e[i][0]);
sort(e, e+m);
scanf("%d", &q);
for (int x, i = 0; i < q; ++i) {
scanf("%d", &x);
memset(ds, -1, sizeof * ds * (n + 1));
mst = 0;
int pl, pr;
pr = lower_bound(e, e + m, ar<int, 3>{x, -1, -1}) - e;
pl = pr - 1;
while (pl >= 0 or pr < m) {
if (pl == -1 or pr < m and e[pr][0] - x < x - e[pl][0])
ds_unite(e[pr][1], e[pr][2], e[pr][0] - x), ++pr;
else
ds_unite(e[pl][1], e[pl][2], x - e[pl][0]), --pl;
}
printf("%lld\n", mst);
}
}