# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
913950 | daoquanglinh2007 | 바이오칩 (IZhO12_biochips) | C++17 | 4 ms | 6744 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int NM = 2e5, MM = 500, inf = 1e9;
int N, M, root, p[NM+5], x[NM+5], timer = 0, tin[NM+5], tout[NM+5], tour[NM+5];
vector <int> son[NM+5];
int dp[NM+5][MM+5];
void dfs_euler_tour(int u){
tin[u] = ++timer;
tour[timer] = u;
for (int v : son[u]){
dfs_euler_tour(v);
}
tout[u] = timer;
}
int main(){
freopen("BIOCHIPS.inp", "r", stdin);
freopen("BIOCHIPS.out", "w", stdout);
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> N >> M;
for (int i = 1; i <= N; i++){
cin >> p[i] >> x[i];
if (p[i] == 0) root = i;
son[p[i]].push_back(i);
}
dfs_euler_tour(root);
for (int i = 1; i <= M; i++) dp[N+1][i] = -inf;
for (int i = N; i >= 1; i--){
int u = tour[i];
for (int j = 1; j <= M; j++)
dp[i][j] = max(dp[tout[u]][j-1]+x[u], dp[i+1][j]);
}
cout << dp[1][M];
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |