#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define pb emplace_back
#define AI(i) begin(i), end(i)
template<class T> bool chmin(T &a, T b) { return b < a && (a = b, true); }
template<class T> bool chmax(T &a, T b) { return a < b && (a = b, true); }
#ifdef KEV
#define DE(args...) kout("[ " + string(#args) + " ] = ", args)
void kout() { cerr << endl; }
template<class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ', kout(b...); }
template<class T> void debug(T l, T r) { while (l != r) cerr << *l << " \n"[next(l) == r], ++l; }
#else
#define DE(...) 0
#define debug(...) 0
#endif
const int MAX_N = 200010;
const ll inf = 1ll << 59;
int n, q;
ll dprt[MAX_N], dpson[MAX_N], res[MAX_N], allsum;
ll goup[MAX_N];
vector<pair<int,int>> edge[MAX_N];
ll dfs1(int x, int lst = -1) {
ll uplen = 0;
for (auto [u, w] : edge[x]) if (u != lst)
dpson[x] += dfs1(u, x);
else uplen = w;
return dpson[x] + uplen;
}
void dfs2(int x, int lst = -1, ll upson = 0) {
if (lst == -1) dprt[x] = dpson[x];
dprt[x] += upson;
for (auto [u, w] : edge[x]) if (u == lst)
dprt[x] -= w;
for (auto [u, w] : edge[x]) if (u != lst)
dfs2(u, x, dprt[x] + w);
}
pair<int,int> best[MAX_N];
ll bstsum[MAX_N];
pair<ll,ll> mxlen[MAX_N];
void dfs3(int x, int lst = -1) {
mxlen[x] = {0, x};
for (auto [u, w] : edge[x]) if (u != lst) {
dfs3(u, x);
if (chmax(bstsum[x], bstsum[u]))
best[x] = best[u];
mxlen[u].first += w;
if (chmax(bstsum[x],
mxlen[x].first + mxlen[u].first + dprt[x]))
best[x] = {mxlen[x].second, mxlen[u].second};
chmax(mxlen[x], mxlen[u]);
}
}
int pa[MAX_N], paint[MAX_N];
ll gain[MAX_N];
void dfs4(int x, int lst = -1) {
if (paint[x]) gain[x] = 0;
pa[x] = lst;
for (auto [u, w] : edge[x]) if (u != lst) {
gain[u] = gain[x] + w;
dfs4(u, x);
}
}
int rt;
void takeout(int x) {
while (x != -1) {
paint[x] = true;
x = pa[x];
}
dfs4(rt);
}
void solve() {
dfs3(1);
res[2] = bstsum[1];
rt = best[1].first;
dfs4(rt);
takeout(best[1].second);
for (int i = 3;i <= n;++i) {
ll ad = 0, id = rt;
for (int j = 1;j <= n;++j)
if (chmax(ad, gain[j]))
id = j;
res[i] = res[i-1] + ad;
takeout(id);
}
}
int32_t main() {
ios_base::sync_with_stdio(0), cin.tie(0);
cin >> n;
for (int a, b, c, d, i = 1;i < n;++i) {
cin >> a >> b >> c >> d;
edge[a].pb(b, c);
edge[b].pb(a, d);
allsum += c + d;
}
dfs1(1);
dfs2(1);
res[1] = *max_element(dprt+1, dprt+1+n);
solve();
cin >> q;
for (int i = 0, v;i < q;++i) {
cin >> v;
cout << allsum - res[v] << '\n';
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
5100 KB |
Output is correct |
2 |
Correct |
4 ms |
5100 KB |
Output is correct |
3 |
Correct |
4 ms |
5120 KB |
Output is correct |
4 |
Correct |
5 ms |
5100 KB |
Output is correct |
5 |
Correct |
6 ms |
5100 KB |
Output is correct |
6 |
Correct |
4 ms |
5120 KB |
Output is correct |
7 |
Correct |
4 ms |
5100 KB |
Output is correct |
8 |
Correct |
4 ms |
5100 KB |
Output is correct |
9 |
Correct |
4 ms |
5100 KB |
Output is correct |
10 |
Correct |
4 ms |
5100 KB |
Output is correct |
11 |
Correct |
4 ms |
5100 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
5100 KB |
Output is correct |
2 |
Execution timed out |
2083 ms |
26388 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
5228 KB |
Output is correct |
2 |
Execution timed out |
2085 ms |
26988 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
5100 KB |
Output is correct |
2 |
Correct |
4 ms |
5100 KB |
Output is correct |
3 |
Correct |
4 ms |
5120 KB |
Output is correct |
4 |
Correct |
5 ms |
5100 KB |
Output is correct |
5 |
Correct |
6 ms |
5100 KB |
Output is correct |
6 |
Correct |
4 ms |
5120 KB |
Output is correct |
7 |
Correct |
4 ms |
5100 KB |
Output is correct |
8 |
Correct |
4 ms |
5100 KB |
Output is correct |
9 |
Correct |
4 ms |
5100 KB |
Output is correct |
10 |
Correct |
4 ms |
5100 KB |
Output is correct |
11 |
Correct |
4 ms |
5100 KB |
Output is correct |
12 |
Correct |
4 ms |
5100 KB |
Output is correct |
13 |
Correct |
77 ms |
5356 KB |
Output is correct |
14 |
Correct |
96 ms |
5484 KB |
Output is correct |
15 |
Correct |
81 ms |
5484 KB |
Output is correct |
16 |
Correct |
77 ms |
5484 KB |
Output is correct |
17 |
Correct |
75 ms |
5356 KB |
Output is correct |
18 |
Correct |
84 ms |
5484 KB |
Output is correct |
19 |
Correct |
75 ms |
5356 KB |
Output is correct |
20 |
Correct |
71 ms |
5484 KB |
Output is correct |
21 |
Correct |
78 ms |
5356 KB |
Output is correct |
22 |
Correct |
81 ms |
5560 KB |
Output is correct |
23 |
Correct |
70 ms |
5356 KB |
Output is correct |
24 |
Correct |
52 ms |
5356 KB |
Output is correct |
25 |
Correct |
86 ms |
5484 KB |
Output is correct |
26 |
Correct |
50 ms |
5356 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
5100 KB |
Output is correct |
2 |
Execution timed out |
2083 ms |
26388 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
5100 KB |
Output is correct |
2 |
Correct |
4 ms |
5100 KB |
Output is correct |
3 |
Correct |
4 ms |
5120 KB |
Output is correct |
4 |
Correct |
5 ms |
5100 KB |
Output is correct |
5 |
Correct |
6 ms |
5100 KB |
Output is correct |
6 |
Correct |
4 ms |
5120 KB |
Output is correct |
7 |
Correct |
4 ms |
5100 KB |
Output is correct |
8 |
Correct |
4 ms |
5100 KB |
Output is correct |
9 |
Correct |
4 ms |
5100 KB |
Output is correct |
10 |
Correct |
4 ms |
5100 KB |
Output is correct |
11 |
Correct |
4 ms |
5100 KB |
Output is correct |
12 |
Correct |
4 ms |
5100 KB |
Output is correct |
13 |
Execution timed out |
2083 ms |
26388 KB |
Time limit exceeded |
14 |
Halted |
0 ms |
0 KB |
- |