이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
struct SGT {
vector<ll> tree;
int sz;
SGT(int n) {
sz = 1;
while (sz < n)sz *= 2;
tree.resize(sz * 2);
}
ll query(int le, int ri) {
le += sz;
ri += sz;
ll ret = 0;
while (le <= ri) {
if (le & 1)ret = max(ret, tree[le++]);
if (!(ri & 1))ret = max(ret, tree[ri--]);
le /= 2;
ri /= 2;
}
return ret;
}
};
int n;
vector<pair<int,int> > adj[1000005];
int trip[1000005], w[1000005];
bool chk[1000005];
vector<int> cycle,len;
ll dd[1000005];
vector<ll> d;
int r[1000005];
int vn;
void dfs(int now, int pi) {
r[now] = trip[now] = ++vn;
for (auto &e : adj[now]) {
if (e.second==pi)continue;
if (!trip[e.first]) {
dfs(e.first, e.second);
r[now] = min(r[now], r[e.first]);
}
else if(!chk[e.first]){
r[now] = min(r[now], trip[e.first]);
cycle.push_back(e.first);
chk[e.first] = true;
len.push_back(w[e.second]);
}
}
if (r[now] < trip[now]) {
chk[now] = true;
cycle.push_back(now);
len.push_back(w[pi]);
}
}
ll val;
void dfs2(int now) {
chk[now] = true;
for (auto &e : adj[now]) {
if (chk[e.first])continue;
dfs2(e.first);
val = max(val, dd[now] + dd[e.first] + w[e.second]);
dd[now] = max(dd[now], dd[e.first] + w[e.second]);
}
}
ll calc(vector<ll> &d, vector<int> &len, int m) {
SGT sgt(m * 2);
ll sum = len[0];
for (int i = 1; i < m * 2; i++) {
sgt.tree[i + sgt.sz] = sum + d[i%m];
sum += len[i%m];
}
for (int i = sgt.sz - 1; i; i--)
sgt.tree[i] = max(sgt.tree[i * 2], sgt.tree[i * 2 + 1]);
ll ret = 0;
sum = 0;
for (int i = 0; i < m; i++) {
ll temp = d[i] + sgt.query(i + 1, i + m - 1) - sum;
ret = max(ret, temp);
sum += len[i];
}
return ret;
}
int main() {
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
int a, b;
scanf("%d%d", &a, &b);
adj[i].emplace_back(a,i);
adj[a].emplace_back(i,i);
w[i] = b;
}
ll ans = 0;
for (int i = 1; i <= n; i++) {
if (!trip[i]) {
cycle.clear();
len.clear();
dfs(i, 0);
int m = cycle.size();
d = vector<ll>(m);
val = 0;
for (int i = 0; i < cycle.size(); i++) {
dfs2(cycle[i]);
d[i] = dd[cycle[i]];
}
val = max(val,calc(d, len, m));
reverse(len.begin(), len.end() - 1);
reverse(d.begin(), d.end());
val = max(val, calc(d, len, m));
ans += val;
}
}
printf("%lld\n", ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
islands.cpp: In function 'int main()':
islands.cpp:101:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < cycle.size(); i++) {
~~^~~~~~~~~~~~~~
islands.cpp:84:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &n);
~~~~~^~~~~~~~~~
islands.cpp:87:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &a, &b);
~~~~~^~~~~~~~~~~~~~~~
# | 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... |
# | 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... |