답안 #673349

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
673349 2022-12-20T09:08:22 Z viwlesxq 바이오칩 (IZhO12_biochips) C++17
50 / 100
229 ms 524288 KB
#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];
ll 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;
		else 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];
} 
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 5076 KB Output is correct
2 Incorrect 2 ms 5076 KB Output isn't correct
3 Correct 3 ms 5332 KB Output is correct
4 Correct 18 ms 40276 KB Output is correct
5 Correct 23 ms 44656 KB Output is correct
6 Correct 25 ms 44628 KB Output is correct
7 Runtime error 217 ms 524288 KB Execution killed with signal 9
8 Runtime error 207 ms 524288 KB Execution killed with signal 9
9 Runtime error 229 ms 524288 KB Execution killed with signal 9
10 Runtime error 221 ms 524288 KB Execution killed with signal 9