이 제출은 이전 버전의 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
#define int long long
int32_t main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, s;
cin>>n>>s;
int org = 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)> dfs = [&](int a, int bal)
{
bal += cost[a];
if(bal >= s)
{
deg[a] = true;
for(auto v : graph[a]) deg[v] = false;
return cost[a];
}
if(bal < 0) return (int)(-1e18);
for(auto v : graph[a])
{
int c = dfs(v, bal);
if(c > -1e18)
{
deg[a] = true;
for(auto u : graph[a])
if(u != v)
deg[u] = false;
return c + cost[a];
}
}
return (int)(-1e18);
};
while(true)
{
int f = false;
for(int i=1;i<=n;i++) if(deg[i] == false) {int x = dfs(i, s); if(x > 0) {s += x; f = 1; break;}}
if(!f) break;
}
cout<<s-org;
}
# | 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... |