# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
502793 | tmn2005 | Biochips (IZhO12_biochips) | C++17 | 258 ms | 524292 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int,int>
#define OK puts("OK");
#define NO puts("NO");
#define YES puts("YES");
#define fr first
#define sc second
#define ret return
#define scan1(a) scanf("%lld",&a);
#define scan2(a,b) scanf("%lld %lld",&a, &b);
#define scan3(a,b,c) scanf("%lld %lld %lld",&a,&b,&c);
#define all(s) s.begin(),s.end()
#define allr(s) s.rbegin(),s.rend()
#define pb push_back
#define sz(v) (int)v.size()
#define endi puts("");
const int N = 1e6+12,INF=1e9+7;
vector <int> g[N];
int l[N],cnt=1,n,m,w[N],ves[N],dp[200001][501];
void dfs(int x){
int t = cnt,i;
for (i=0;i<g[x].size();++i){
dfs(g[x][i]);
}
ves[cnt]=w[x];
l[cnt++]=t;
}
main(){
int s=0,i,j;
cin>>n>>m;
for (i=1;i<=n;++i){
int a,b;
cin>>a>>b;
w[i]=b;
if (a)
g[a].pb(i);
else s = i;
}
dfs(s);
for(int i = 0; i <= n; ++i)
for(int j = 1; j <= m; ++j)
dp[i][j] = -INF;
for (i=1;i<=n;++i){
for (j=1;j<=m;++j){
dp[i][j] = max(dp[i-1][j],dp[l[i]-1][j-1]+ves[i]);
}
}
cout <<dp[n][m];
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |