답안 #333108

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
333108 2020-12-04T16:22:34 Z caoash 바이오칩 (IZhO12_biochips) C++17
0 / 100
4 ms 5100 KB
#include <bits/stdc++.h> 
using namespace std;

using ll = long long;

using vi = vector<int>;
using vl = vector<ll>;
#define pb push_back
#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()
#define lb lower_bound
#define ub upper_bound

using pi = pair<int,int>;
#define f first
#define s second
#define mp make_pair

const int MX = 200005;
const int MOD = (int) (1e9 + 7);
const ll INF = (ll) 1e18;

vi adj[MX];
int dp[MX][505];
int st[MX], en[MX], val[MX], pos[MX];
int cnt = 0;

void dfs(int v, int p) {
    st[v] = cnt;
    pos[cnt] = v;
    for (int to : adj[v]) {
        if (to != p) dfs(to, v); 
    }
    en[v] = cnt++;
}

int main(){
#ifdef mikey 
    freopen("a.in", "r", stdin);
#endif
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m; cin >> n >> m;
    int root = -1;
    for (int i = 0; i < n; i++) {
        int p, x; cin >> p >> x;
        p--;
        val[i] = x;
        if (p != -1) {
            adj[p].pb(i);
        } else {
            root = i;
        }
    }
    dfs(root, -1);
    for (int i = 0; i < cnt; i++) {
        for (int j = 0; j <= m; j++) {
            int cur = pos[i];
            int nxt = en[cur] + 1;
            if (j < m) dp[nxt][j + 1] = max(dp[nxt][j + 1], dp[i][j] + val[cur]);
            dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]);
        }
    }
    cout << dp[cnt][m] << '\n';
}

# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 5100 KB Output isn't correct
2 Halted 0 ms 0 KB -