| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 344769 | Gurban | 바이오칩 (IZhO12_biochips) | C++17 | 30 ms | 10092 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 505;
const int maxn=200005;
int n,m,root;
int p[maxn],a[maxn];
int mx[maxn],l[maxn],r[maxn];
vector<int>E[maxn],v;
int dp[maxn][N],ps[maxn];
void dfs(int nd){
	mx[nd] = a[nd];
	if(E[nd].empty()){
		l[nd]=nd,r[nd]=nd;
		v.push_back(nd); ps[nd] = (int)v.size()-1;
		return;
		
	}
	for(auto i : E[nd]){
		dfs(i);
		if(l[nd] == 0) l[nd] = l[i];
		r[nd] = r[i];
		mx[nd] = max(mx[nd],mx[i]);
	}
}
void f(int pos,int nd){
	if(nd == 0 or r[nd] != v[pos]) return;
	int lft = ps[l[nd]] - 1;
	for(int i = 1;i <= min(m,lft + 1);i++)
		dp[pos][i] = max(dp[lft][i-1]+mx[nd],dp[pos][i]);
	f(pos,p[nd]);
}
int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	cin >> n >> m;
	for(int i = 1;i <= n;i++){
		cin >> p[i] >> a[i];
		if(p[i] == 0) root = i;
		else E[p[i]].push_back(i);
	}
	
	v.push_back(-1);
	dfs(root);
	assert((int)v.size()-1 >= m);
	
	for(int i = 0;i < (int)v.size();i++) for(int j = 1;j <= m;j++) dp[i][j] = -1e9;
	for(int i = 1;i < (int)v.size();i++){
		f(i,v[i]);
		for(int j = 1;j <= m;j++) dp[i][j] = max(dp[i][j],dp[i-1][j]);
	}
	
	cout<<dp[(int)v.size()-1][m];
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
