Submission #438306

#TimeUsernameProblemLanguageResultExecution timeMemory
438306bobbilykingFriend (IOI14_friend)C++17
46 / 100
32 ms4636 KiB
#include "friend.h" #include<bits/stdc++.h> using namespace std; #define N 100010 typedef long long int ll; ll cost[N]; vector<ll> adj[N]; int dp[N]; int solve(int i, int p){ // Either take or do not take thsi value. // If we do not take this value, all subtrees are available for taking, so sum up dp across that. // If we do take this value, we sum up all secondary subtrees. if (dp[i]==-1){ int ans1 = 0; int ans2 = cost[i]; for (int x: adj[i]){ if (x==p||x==i) continue; ans1+=solve(x,i); } for (int x: adj[i]){ if (x==p||x==i) continue; for (int y: adj[x]){ if(y==i || y ==p||y==x) continue; ans2+=solve(y,x); } } dp[i]=max(ans1,ans2); } return dp[i]; } int findSample(int n, int c[], int h[], int p[]){ int sum = 0; ll mx = 0; int prot[3]; for (int i= 0 ; i < 3; i++) prot[i] = 0; for (int i = 0 ; i< n; i++) { cost[i] = c[i]; sum += c[i]; mx = max(mx,cost[i]); } for (int i =1; i < n; i++){ prot[p[i]]++; } int ans = 0; if (n <= 10){ for (int i =1;i<n;i++){ if(p[i]==1 or p[i]==2){ for (int x: adj[h[i]]){ adj[x].push_back(i); adj[i].push_back(x); } } if(p[i]==0 or p[i]==2){ adj[i].push_back(h[i]); adj[h[i]].push_back(i); } } for (int bm =0 ; bm < (1<<n); bm++){ int sum = 0; bool works = true; bool vis[N]; for (int i =0 ; i < n; i++) vis[i] = false; for (int j =0 ; j < n; j++){ if ((bm&(1<<j))>0) { vis[j]=true; sum+=c[j]; } } for (int i = 0 ; i < n; i++){ if (vis[i]){ for (int x:adj[i]) if(vis[x])works=false; } } if (!works)continue; ans = max(ans,sum); } } else if (prot[1]==n-1){ ans = sum; } else if (prot[2]==n-1){ ans = mx; } else if (prot[0] == n-1){ for (int i = 1; i < n; i++){ adj[i].push_back(h[i]); adj[h[i]].push_back(i); } for (int i = 0 ; i < n; i++) dp[i] = -1; ans = solve(0,0); } return ans; } void readInput(){ int n; cin>>n; int c[n], h[n], p[n]; for (int i = 0; i < n; i++) cin>>c[i]; for (int i =1 ; i < n; i++) cin>>h[i]>>p[i]; cout<<findSample(n,c,h,p)<<'\n'; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...