# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1021441 | Minbaev | 바이오칩 (IZhO12_biochips) | C++17 | 419 ms | 398160 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//Just try and the idea will come!
#include<bits/stdc++.h>
using namespace std;
int n,m,i,j,dp[200001][501],res,timer=1,root;
struct node{
int l,r,cost;
};
node a[200001];
vector<int>g[200001];
void dfs(int v){
if(g[v].empty())timer++;
a[v].l=timer;
for(int to:g[v])dfs(to);
a[v].r=timer;
}
bool cmp(node l,node r){
return l.r<r.r;
}
int main(){
scanf("%d%d",&n,&m);
for(i=1;i<=n;i++){
scanf("%d%d",&j,&a[i].cost);
if(j)g[j].push_back(i);
else root=i;
}
dfs(root);
sort(a+1,a+1+n,cmp);
for(i=1;i<=n;i++){
for(j=0;j<=m;j++)
dp[a[i].r][j]=max(dp[a[i].r][j],dp[a[i].r-1][j]);
for(j=1;j<=min(a[i].l,m);j++)if(a[i].l != 1)dp[a[i].r][j]=max(dp[a[i].r][j],dp[a[i].l-(a[i].l==a[i].r)][j-1]+a[i].cost);
}
for(i=1;i<=timer;i++)res=max(res,dp[i][m]);
if(m == 1){
for(int i = 1;i<=n;i++){
if(a[i].l == 1)res = max(res, a[i].cost);
}
}
printf("%d",res);
//~ cout << "\n";
//~ for(int i = 1;i<=n;i++){
//~ cout << a[i].cost << " " << a[i].l << " " << a[i].r << "\n";
//~ }
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |