이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#ifdef DEBUG
auto& operator <<(auto& o, pair<auto, auto> p) {return o<<"{"<<p.first<<", "<<p.second<<"}";}
auto& operator <<(auto& o, auto x) {o<<"{"; for(auto v : x) o<<v<<", "; return o<<"}";}
#define debug(X) cerr<<"["#X"]: "<<X<<endl;
#else
#define debug(X) {}
#endif
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, s;
cin>>n>>s;
vector<vector<int> > graph(n+1);
vector<int> cost(n+1);
vector<bool> deg(n+1, true);
for(int i=1;i<=n;i++)
{
int p, c;
cin>>c>>p;
cost[i] = c;
if(p == 0) deg[i] = false;
else
graph[p].push_back(i);
}
function<int(int, int, bool)> dfs = [&](int a, int bal, bool f)
{
bal += cost[a];
if(bal < 0) return -1;
vector<pair<int, int> > paths;
paths.push_back({0, a});
for(auto v : graph[a])
paths.push_back({dfs(v, bal, false), v});
sort(paths.begin(), paths.end());
if(f)
{
deg[a] = true; for(auto v : graph[a]) deg[v] = false;
if(paths.back().second != a)
dfs(paths.back().second, bal, true);
}
return paths.back().first + cost[a];
};
while(true)
{
vector<pair<int, int> > paths;
for(int i=1;i<=n;i++) paths.push_back({dfs(i, s, false), i});
sort(paths.begin(), paths.end());
if(paths.back().first > s) {dfs(paths.back().second, s, true); s = paths.back().first;}
else break;
}
cout<<s;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |