#include <bits/stdc++.h>
using namespace std;
using ll = int64_t;
using str = string;
#define pb push_back
#define pf push_front
#define ppb pop_back
#define ppf pop_front
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define sz(x) (int)x.size()
const int N = 2e5 + 1, M = 5e2 + 1, inf = 1e9 + 7;
vector <int> g[N];
int dp[N][M], p[N], x[N], timer = 1, tin[N], arr[N];
void dfs(int v) {
int in = timer;
for (int to : g[v]) dfs(to);
tin[timer] = in;
arr[timer] = x[v];
timer++;
}
signed main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, m;
cin >> n >> m;
int root = -1;
for (int i = 1; i <= n; i++) {
cin >> p[i] >> x[i];
if (!p[i]) root = i;
g[p[i]].pb(i);
}
dfs(root);
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[tin[i] - 1][j - 1] + arr[i]);
}
}
cout << dp[n][m] << '\n';
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4948 KB |
Output is correct |
2 |
Incorrect |
2 ms |
4948 KB |
Output isn't correct |
3 |
Correct |
2 ms |
5204 KB |
Output is correct |
4 |
Correct |
15 ms |
22740 KB |
Output is correct |
5 |
Correct |
14 ms |
24928 KB |
Output is correct |
6 |
Correct |
15 ms |
24916 KB |
Output is correct |
7 |
Correct |
206 ms |
297664 KB |
Output is correct |
8 |
Correct |
196 ms |
297624 KB |
Output is correct |
9 |
Correct |
258 ms |
361892 KB |
Output is correct |
10 |
Correct |
314 ms |
399428 KB |
Output is correct |