# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
827553 | 2023-08-16T14:39:56 Z | MasterTaster | Biochips (IZhO12_biochips) | C++14 | 525 ms | 413128 KB |
#include <bits/stdc++.h> #define ll long long #define pii pair<int, int> #define xx first #define yy second #define pb push_back #define MAXN 200010 #define MAXM 510 #define MAXX 1000000010LL using namespace std; int n, m, p, w[MAXN], gde[MAXN], r[MAXN]; int dp[MAXN][MAXM]; bool bio[MAXN]; vector<int> g[MAXN], svi; void dfs(int u) { bio[u]=true; svi.pb(u); gde[u]=svi.size()-1; for (int i=0; i<=m; i++) dp[gde[u]][i]=-MAXX; dp[gde[u]][1]=w[u]; dp[gde[u]][0]=0; for (auto v:g[u]) { if (!bio[v]) dfs(v); } r[u]=svi.size(); ///cout<<u<<":"<<endl; ///for (int i=0; i<=m; i++) cout<<dp[u][i]<<" "; ///cout<<endl; } int main(){ cin>>n>>m; if (n<=10) assert(0); int koren=1; for (int i=1; i<=n; i++) { cin>>p>>w[i]; if (p==0) { koren=i; continue; } g[p].pb(i); g[i].pb(p); } dfs(koren); //for (int i=0; i<svi.size(); i++) cout<<svi[i]<<" "; //cout<<endl; for (int i=svi.size()-1; i>=0; i--) { for (int j=0; j<=m; j++) { if (j==0) { dp[i][j]=0; continue; } if (i!=svi.size()-1) dp[i][j]=max(dp[i][j], dp[i+1][j]); //else dp[i][1]=w[svi[i]]; if (r[svi[i]]<svi.size()) dp[i][j]=max(dp[i][j], dp[r[svi[i]]][j-1]+w[svi[i]]); //cout<<i<<" "<<j<<": "<<dp[i][j]<<endl; } } int ress=-1; for (int i=0; i<svi.size(); i++) ress=max(ress, dp[i][m]); cout<<ress; //cout<<dp[0][m]; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 11 ms | 9920 KB | Execution killed with signal 6 |
2 | Runtime error | 15 ms | 9928 KB | Execution killed with signal 6 |
3 | Correct | 2 ms | 5204 KB | Output is correct |
4 | Correct | 14 ms | 23252 KB | Output is correct |
5 | Correct | 17 ms | 25464 KB | Output is correct |
6 | Correct | 18 ms | 25544 KB | Output is correct |
7 | Correct | 353 ms | 307632 KB | Output is correct |
8 | Correct | 353 ms | 307556 KB | Output is correct |
9 | Correct | 439 ms | 374128 KB | Output is correct |
10 | Correct | 525 ms | 413128 KB | Output is correct |