이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 2e5 + 12, MOD = (int)1e9 + 7;
int n, p[N], x[N];
ll s, d[N];
vector<int> g[N], rt, ord[N];
void prec(int v) {
d[v] = x[v];
for(int to:g[v]) {
prec(to);
if(d[to] < 0) continue;
d[v] += d[to];
}
}
void dfs(int v) {
if(d[v] < 0) return;
vector<int> f;
for(int to:g[v]) {
dfs(to);
vector<int> nv;
int l = 0, r = 0;
while(l < (int)f.size() || r < (int)ord[to].size()) {
if(l == (int)f.size() || (r != ord[to].size() && x[ord[to][r]] > x[f[l]])) {
nv.push_back(ord[to][r]);
r++;
} else {
nv.push_back(f[l]);
l++;
}
}
f = nv;
}
ord[v].push_back(v);
for(auto j:f) {
ord[v].push_back(j);
}
}
void test() {
cin >> n >> s;
for(int i = 1; i <= n; i++) {
cin >> x[i] >> p[i];
g[p[i]].push_back(i);
}
prec(0);
dfs(0);
ll st = s, en = s, mx = s;
for(int i:ord[0]) {
en += x[i];
if(en < 0) break;
mx = max(mx, en);
}
cout << mx - st << '\n';
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
int t = 1;
// cin >> t;
while(t--)
test();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
Main.cpp: In function 'void dfs(int)':
Main.cpp:29:41: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | if(l == (int)f.size() || (r != ord[to].size() && x[ord[to][r]] > x[f[l]])) {
| ~~^~~~~~~~~~~~~~~~~
# | 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... |