Submission #1083556

#TimeUsernameProblemLanguageResultExecution timeMemory
1083556jay22Friend (IOI14_friend)C++14
27 / 100
1 ms348 KiB
#include <algorithm> const int LEN = 1'000'001; int w[LEN], dp[LEN][2]; int findSample(int n, int confidence[], int host[], int protocol[]) { for (int i = 0; i < n; ++i) w[i] = confidence[i]; for (int i = n - 1; i; --i) { if (protocol[i] == 0) { dp[host[i]][1] += dp[i][0]; dp[host[i]][0] += std::max(dp[i][0], dp[i][1] + w[i]); } if (protocol[i] == 1) { if (dp[host[i]][0] + dp[i][1] > dp[host[i]][1] + dp[i][0]) { dp[host[i]][1] = dp[host[i]][0] + dp[i][1]; } else { dp[host[i]][1] = dp[host[i]][1] + dp[i][0]; } w[host[i]] += w[i]; dp[host[i]][0] += dp[i][0]; } if (protocol[i] == 2) { if (dp[host[i]][0] + dp[i][1] + w[i] > dp[host[i]][1] + w[host[i]] + dp[i][0]) { dp[host[i]][1] = dp[host[i]][0] + dp[i][1] + w[i]; w[host[i]] = w[i]; } else { dp[host[i]][1] = dp[host[i]][1] + w[host[i]] + dp[i][0]; } dp[host[i]][0] += dp[i][0]; } } return std::max(dp[0][0], dp[0][1] + w[0]); }
#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...