#include<bits/stdc++.h>
#define N 300010
#define pii pair <int, int>
#define fr first
#define sc second
#define int long long
#define inf 1e18
using namespace std;
int n, m;
vector <pii> gst[N];
vector <pii> g[N];
int vals[N];
vector <int> folhas;
vector <int> tp;
int deg[N], pai[N];
int res[N];
void topsort(){
queue <int> q;
for(auto x : folhas) q.push(x);
deg[1] = -1;
while(!q.empty()){
int v = q.front();
q.pop();
tp.push_back(v);
if(v == 1) continue;
deg[pai[v]]--;
if(deg[pai[v]] == 0) q.push(pai[v]);
}
}
void build(int v, int p){
pai[v] = p;
deg[v] = gst[v].size();
for(auto x : gst[v]){
if(x.fr == p) continue;
vals[x.fr] = vals[v] + x.sc;
build(x.fr, v);
}
if(gst[v].size() == 0) folhas.push_back(v);
return;
}
void solve(int v, int val){
vector <int> stk;
int p = pai[v];
for(auto x : g[v]){
if(x.fr == p) continue;
stk.push_back(res[x.fr]);
}
sort(stk.begin(), stk.end());
int t = stk.size();
t = (t-1)/2;
if(stk.size() % 2 == 0){
int t1 = 0, t2 = 0;
int v1 = stk[t], v2 = stk[t+1];
for(auto x : g[v]){
if(x.fr == p) continue;
t1 += abs(res[x.fr] - v1);
t2 += abs(res[x.fr] - v2);
}
t1 += abs(v1);
t2 += abs(v2);
if(t1 > t2){
t++;
}
}
res[v] = stk[t];
for(auto x : g[v]){
if(x.fr == p) continue;
res[x.fr] = res[x.fr] - res[v];
}
return;
}
int32_t main(){
cin >> n >> m;
for(int i = 2;i <= n+m;i++){
int a, b;
cin >> a >> b;
gst[a].push_back({i, b});
}
// cout << '\n';
build(1, 1);
topsort();
int resp = inf;
for(auto x : folhas){
for(int i = 1;i <= n+m;i++) g[i] = gst[i];
int val = vals[x];
// cout << x << ' ' << val << '\n';
for(auto v : tp){
if(g[v].size() == 0) res[v] = val - vals[v];
else solve(v, val);
// cout << v << ' ' << res[v] << '\n';
}
int sum = 0;
for(int i = 1;i <= n+m;i++){
sum += abs(res[i]);
}
// cout << sum << '\n';
// cout << "\n\n\n";
resp = min(resp, sum);
}
cout << resp << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
21596 KB |
Output is correct |
2 |
Correct |
5 ms |
21696 KB |
Output is correct |
3 |
Correct |
5 ms |
21596 KB |
Output is correct |
4 |
Correct |
4 ms |
21676 KB |
Output is correct |
5 |
Correct |
5 ms |
21596 KB |
Output is correct |
6 |
Correct |
4 ms |
21592 KB |
Output is correct |
7 |
Correct |
4 ms |
21596 KB |
Output is correct |
8 |
Correct |
4 ms |
21596 KB |
Output is correct |
9 |
Correct |
4 ms |
21708 KB |
Output is correct |
10 |
Correct |
4 ms |
21592 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
21704 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
21596 KB |
Output is correct |
2 |
Correct |
5 ms |
21696 KB |
Output is correct |
3 |
Correct |
5 ms |
21596 KB |
Output is correct |
4 |
Correct |
4 ms |
21676 KB |
Output is correct |
5 |
Correct |
5 ms |
21596 KB |
Output is correct |
6 |
Correct |
4 ms |
21592 KB |
Output is correct |
7 |
Correct |
4 ms |
21596 KB |
Output is correct |
8 |
Correct |
4 ms |
21596 KB |
Output is correct |
9 |
Correct |
4 ms |
21708 KB |
Output is correct |
10 |
Correct |
4 ms |
21592 KB |
Output is correct |
11 |
Incorrect |
4 ms |
21704 KB |
Output isn't correct |
12 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
21596 KB |
Output is correct |
2 |
Correct |
5 ms |
21696 KB |
Output is correct |
3 |
Correct |
5 ms |
21596 KB |
Output is correct |
4 |
Correct |
4 ms |
21676 KB |
Output is correct |
5 |
Correct |
5 ms |
21596 KB |
Output is correct |
6 |
Correct |
4 ms |
21592 KB |
Output is correct |
7 |
Correct |
4 ms |
21596 KB |
Output is correct |
8 |
Correct |
4 ms |
21596 KB |
Output is correct |
9 |
Correct |
4 ms |
21708 KB |
Output is correct |
10 |
Correct |
4 ms |
21592 KB |
Output is correct |
11 |
Incorrect |
4 ms |
21704 KB |
Output isn't correct |
12 |
Halted |
0 ms |
0 KB |
- |