답안 #1086133

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1086133 2024-09-09T15:47:47 Z TrinhKhanhDung 바이오칩 (IZhO12_biochips) C++14
30 / 100
2000 ms 524296 KB
#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] = 0;
    for(int v: adj[u]){
        dfs(v);
        for(int i=cnt[u]; i>=0; i--){
            for(int j=min(cnt[v], K - i); j>=0; j--){
                maximize(f[u][i + j], f[v][j] + f[u][i]);
            }
        }
        cnt[u] += cnt[v];
        minimize(cnt[u], K);
    }
    maximize(f[u][1], value[u]);
    cnt[u]++;
}

void solve(){
    cin >> N >> K;
    memset(f, -0x3f, 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 172 ms 397140 KB Output is correct
3 Correct 185 ms 397260 KB Output is correct
4 Execution timed out 2546 ms 524288 KB Time limit exceeded
5 Execution timed out 2392 ms 524288 KB Time limit exceeded
6 Execution timed out 2424 ms 524288 KB Time limit exceeded
7 Execution timed out 2390 ms 524288 KB Time limit exceeded
8 Execution timed out 2572 ms 524296 KB Time limit exceeded
9 Execution timed out 2597 ms 524288 KB Time limit exceeded
10 Execution timed out 2426 ms 524288 KB Time limit exceeded