이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
vector<ll> profit;
vector<set<ll>> children;
ll profit_dp(ll node) {
// childrens_profit = sum of positive profits of children
// return max(profit[node] + childrens_profit, 0)
ll cp = 0;
for(auto child : children[node]) {
cp += max(profit_dp(child), 0ll);
}
return max(profit[node] + cp, 0ll);
}
int main() {
ll n, s;
cin >> n >> s;
profit.resize(n+1);
children.resize(n+1);
for(ll i = 0 ; i < n; i++) {
ll x, p;
cin >> x >> p;
profit[i+1] = x;
children[p].insert(i+1);
}
cout << profit_dp(0) << endl;
return 0;
}
# | 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... |