# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
513743 | Aktan | Biochips (IZhO12_biochips) | C++17 | 296 ms | 524292 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
#define ordered_set tree<int, null_type,less<int>, rb_tree_tag,tree_order_statistics_node_update>
#define int long long
#define ft first
#define sc second
using namespace std;
const int mod=1e9+7,INF=1e9+7;
vector<int> v[200005];
int a[200005],b[200005],d[200005];
int tout[200005],dp[200005][505],tin=1;
void dfs(int x){
int y=tin;
for(auto w : v[x]){
dfs(w);
}
d[tin]=b[x];
tout[tin++]=y;
}
main(){
int n,m;
cin >> n >> m;
for(int i=1;i<=n;i++){
cin >> a[i] >> b[i];
v[a[i]].push_back(i);
}
dfs(0);
for(int i=0;i<=n;i++){
for(int j=1;j<=m;j++){
dp[i][j]=-INF;
}
}
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
dp[i][j]=max(dp[i-1][j],dp[tout[i]-1][j-1]+d[i]);
}
}
cout << dp[n][m];
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |