# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
118222 | songc | Designated Cities (JOI19_designated_cities) | C++14 | 464 ms | 25292 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<LL, int> pii;
int N, Q;
vector<pii> G[202020];
int deg[202020];
bool chk[202020];
LL ans[202020];
priority_queue<pii> PQ;
LL d(int u, int p){
LL ret = 0;
for (pii v : G[u]){
if (v.second != p) ret += d(v.second, u);
else ret += v.first;
}
return ret;
}
void f(int u, int p, LL c){
for (pii v : G[u]) {
if (v.second != p) f(v.second, u, c+v.first);
else c -= v.first;
}
ans[1] = min(ans[1], c);
}
int main(){
int u, v;
LL x, y;
scanf("%d", &N);
for (int i=1; i<N; i++){
scanf("%d %d %lld %lld", &u, &v, &x, &y);
G[u].push_back(pii(y, v));
G[v].push_back(pii(x, u));
deg[u]++, deg[v]++;
}
for (int i=1; i<=N; i++) if (deg[i] == 1) PQ.push(pii(-G[i][0].first, i));
while (PQ.size()>2){
pii T = PQ.top();
PQ.pop();
chk[T.second] = true;
for (pii it : G[T.second]){
if (!chk[it.second]){
u = it.second;
break;
}
}
deg[u]--;
if (deg[u] == 1){
for (pii it : G[u]){
if (!chk[it.second]){
PQ.push(pii(T.first-it.first, u));
break;
}
}
continue;
}
ans[PQ.size()] = ans[PQ.size()+1] - T.first;
}
ans[1] = 1234567890;
f(1, 0, d(1, 0));
scanf("%d", &Q);
while (Q--){
scanf("%d", &u);
printf("%lld\n", ans[u]);
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |