# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1092457 | 2024-09-24T06:47:06 Z | alexander707070 | Fireworks (APIO16_fireworks) | C++14 | 3 ms | 7772 KB |
#include<bits/stdc++.h> #define MAXN 300007 using namespace std; const long long inf=1e17; int n,m; int p[MAXN],c[MAXN]; vector< pair<int,long long> > v[MAXN]; vector<long long> dists; long long sum[MAXN],sz[MAXN],ans; void dfs(int x,long long d){ sz[x]=(v[x].empty()); if(sz[x]==1)dists.push_back(d); for(int i=0;i<v[x].size();i++){ dfs(v[x][i].first,d+v[x][i].second); sz[x]+=sz[v[x][i].first]; sum[x]+=sum[v[x][i].first]+v[x][i].second*sz[v[x][i].first]; } } long long solve(int x,long long len,long long e){ long long res=0; long long diff=sum[x]+sz[x]*e-sz[x]*len; if(diff<-sz[x]/2){ res+=-(diff+sz[x]/2)/sz[x]+((diff+sz[x]/2)%sz[x]!=0); e+=-(diff+sz[x]/2)/sz[x]+((diff+sz[x]/2)%sz[x]!=0); } if(diff>sz[x]/2){ res+=min(e,(diff-sz[x]/2)/sz[x]+((diff-sz[x]/2)%sz[x]!=0)); e-=min(e,(diff-sz[x]/2)/sz[x]+((diff-sz[x]/2)%sz[x]!=0)); } for(int i=0;i<v[x].size();i++){ res+=solve(v[x][i].first,len-e,v[x][i].second); } return res; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n>>m; n+=m; for(int i=2;i<=n;i++){ cin>>p[i]>>c[i]; v[p[i]].push_back({i,c[i]}); } dfs(1,0); ans=inf; for(long long len=0;len<=300;len++){ long long curr=0; for(int i=0;i<v[1].size();i++){ curr+=solve(v[1][i].first,len,v[1][i].second); } ans=min(ans,curr); } cout<<ans<<"\n"; return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 7772 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 7516 KB | Output is correct |
2 | Incorrect | 3 ms | 7512 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 7772 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 7772 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |