이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define mp make_pair
#define pb push_back
#define int long long
using ll = long long;
int N, s, x[300005], p[300005];
vector<int> adj[300005];
namespace ufds {
int lnk[300005], sz[300005], l[300005], v[300005], highest[300005];
void init(int n) {
iota(lnk, lnk + 1 + n, 0);
iota(highest, highest + 1 + n, 0);
fill(sz, sz + 1 + n, 1);
}
int find(int x) {
if (x == lnk[x]) {
return x;
}
return lnk[x] = find(lnk[x]);
}
void unite(int a, int b) {
//~ cout << "MERGE " << a << ' ' << b << '\n';
a = find(a);
b = find(b);
if (a == b) {
return;
}
if (sz[b] > sz[a]) {
swap(a, b);
}
sz[a] += sz[b];
lnk[b] = a;
highest[a] = highest[b];
}
};
void pass(int u) {
if (u && ufds::find(u) != ufds::find(p[u])) {
int l_p = ufds::l[ufds::find(p[u])];
int v_p = ufds::v[ufds::find(p[u])];
int l_u = ufds::l[ufds::find(u)];
int v_u = ufds::v[ufds::find(u)];
if (l_p + v_p >= l_u && v_u >= 0) {
ufds::unite(u, p[u]);
ufds::l[ufds::find(u)] = l_p;
ufds::v[ufds::find(u)] = v_p + v_u;
}
}
}
int dfs(int u) {
if (u == ufds::highest[ufds::find(u)] && ufds::l[ufds::find(u)] > 0) {
return 0;
}
int tmp = 0;
if (u == ufds::highest[ufds::find(u)]) {
tmp += ufds::v[ufds::find(u)];
}
for (auto v : adj[u]) {
tmp += dfs(v);
}
return max(tmp, 0ll);
}
main() {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> N >> s;
ufds::l[0] = 0;
ufds::v[0] = s;
for (int i = 1; i <= N; i++) {
cin >> x[i] >> p[i];
adj[p[i]].pb(i);
ufds::l[i] = -x[i];
ufds::v[i] = x[i];
}
ufds::init(N);
for (int rep = 0; rep < N; rep++) {
for (int i = 1; i <= N; i++) {
pass(i);
}
}
cout << dfs(0) - s << '\n';
}
컴파일 시 표준 에러 (stderr) 메시지
Main.cpp:71:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
71 | main() {
| ^~~~
# | 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... |