#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int maxn = 2e5 + 5;
int n, m, root, par[maxn], val[maxn], in[maxn], out[maxn], dp[maxn][505], timer = 0;
vector<int> graph[maxn], euler;
void dfs(int u) {
in[u] = timer++; euler.push_back(u);
for(int &v : graph[u]) dfs(v);
out[u] = timer - 1;
}
int main() {
cin >> n >> m;
for(int i=1; i<=n; i++) {
cin >> par[i] >> val[i];
if(par[i]) graph[par[i]].push_back(i);
else root = i;
}
dfs(root);
for(int i=n-1; i>=0; i--) {
for(int j=0; j<=m; j++) {
dp[i][j] = dp[i+1][j];
if(j) dp[i][j] = max(dp[i][j], dp[out[euler[i]]+1][j-1] + val[euler[i]]);
}
}
cout << dp[1][m] << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
10844 KB |
Output is correct |
2 |
Incorrect |
1 ms |
10844 KB |
Output isn't correct |
3 |
Correct |
2 ms |
10844 KB |
Output is correct |
4 |
Correct |
7 ms |
26972 KB |
Output is correct |
5 |
Correct |
9 ms |
29020 KB |
Output is correct |
6 |
Correct |
9 ms |
29132 KB |
Output is correct |
7 |
Correct |
216 ms |
304404 KB |
Output is correct |
8 |
Correct |
215 ms |
304376 KB |
Output is correct |
9 |
Correct |
271 ms |
368956 KB |
Output is correct |
10 |
Correct |
337 ms |
406656 KB |
Output is correct |