제출 #1053471

#제출 시각아이디문제언어결과실행 시간메모리
1053471ApiramJobs (BOI24_jobs)C++14
0 / 100
71 ms35780 KiB
/*
*  author : Apiram                  
*  created: 11.08.2024 14:11:10
*/

#include<bits/stdc++.h>
using namespace std;

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	long long n,s;cin>>n>>s;
	vector<pair<long long,long long>>arr(n + 1);
	vector<vector<long long>>adj(n + 1);
	for (long long i = 1;i<=n;++i){
		cin>>arr[i].first>>arr[i].second;
		adj[arr[i].second].push_back(i);
	}
	vector<pair<long long,long long>>pos;
	function<int(long long,long long,long long,long long,long long)>dfs = [&](long long u,long long mn,long long profit,long long cost,long long got){
		int ans = 0;
		if (profit - got > 0){
			pos.push_back({mn,profit - got});	
			got = profit;
			ans++;
		}
		for(auto x:adj[u]){
			if (ans){
				got = profit;
			}
			ans += dfs(x,min(mn,cost + arr[x].first),profit + arr[x].first,cost + arr[x].first,got);	 			        
		}
		return ans;
	};
	dfs(0,0,0,0,0);
	sort(pos.rbegin(),pos.rend());
	long long k = s;
	for (auto x:pos){
		if (x.first + k < 0)break;
		k+=x.second;
	}
	cout<<k - s<<'\n';
	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...