#include <bits/stdc++.h>
#define ll long long
#define fi first
#define se second
#define sz(x) (int)x.size()
#define ALL(v) v.begin(),v.end()
#define MASK(k) (1LL << (k))
#define BIT(x, i) (((x) >> (i)) & 1)
#define oo (ll)1e18
#define INF (ll)1e9
#define MOD (ll)(998244353)
using namespace std;
template<class T1, class T2>
bool maximize(T1 &a, T2 b){if(a < b){a = b; return true;} return false;}
template<class T1, class T2>
bool minimize(T1 &a, T2 b){if(a > b){a = b; return true;} return false;}
template<class T1, class T2>
void add(T1 &a, T2 b){a += b; if(a >= MOD) a -= MOD;}
template<class T1, class T2>
void sub(T1 &a, T2 b){a -= b; if(a < 0) a += MOD;}
template<class T>
void cps(T &v){sort(ALL(v)); v.resize(unique(ALL(v)) - v.begin());}
const int MAXN = 2e5 + 1, MAXK = 501;
int N, K;
vector<int> adj[MAXN];
int value[MAXK], cnt[MAXN];
int f[MAXN][MAXK];
void dfs(int u){
cnt[u] = 1;
for(int v: adj[u]) dfs(v);
for(int v: adj[u]){
cnt[u] += cnt[v];
for (int i = min(cnt[u], K); i >= 1; i--) {
for (int j = max(0, i - cnt[u] + cnt[v]); j <= cnt[v] && j <= i; j++) {
if (f[v][j] == -1)
continue;
f[u][i] = max(f[u][i], f[v][j] + f[u][i - j]);
}
}
minimize(cnt[u], K);
}
maximize(f[u][1], value[u]);
}
void solve(){
cin >> N >> K;
memset(f, -1, sizeof f);
int root = 0;
for(int i=1; i<=N; i++){
int p; cin >> p >> value[i];
if(p != 0) adj[p].push_back(i);
else root = i;
f[i][0] = 0;
}
dfs(root);
cout << f[root][K] << '\n';
}
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
// freopen("numtable.inp","r",stdin);
// freopen("numtable.out","w",stdout);
solve();
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
172 ms |
397136 KB |
Output is correct |
2 |
Correct |
171 ms |
397268 KB |
Output is correct |
3 |
Correct |
175 ms |
397288 KB |
Output is correct |
4 |
Execution timed out |
2484 ms |
524288 KB |
Time limit exceeded |
5 |
Execution timed out |
2369 ms |
524288 KB |
Time limit exceeded |
6 |
Execution timed out |
2433 ms |
524288 KB |
Time limit exceeded |
7 |
Execution timed out |
2409 ms |
524288 KB |
Time limit exceeded |
8 |
Execution timed out |
2453 ms |
524288 KB |
Time limit exceeded |
9 |
Execution timed out |
2447 ms |
524288 KB |
Time limit exceeded |
10 |
Execution timed out |
2588 ms |
524288 KB |
Time limit exceeded |