#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int n;
vector<vector<pair<int, int>>> adj; // length, node
vector<bool> vst;
vector<int> comps;
vector<bool> cyc;
vector<pair<int, int>> nxt; // length, node
vector<ll> treeSz;
int cycRoot;
ll dfsCyc(int &cur, int &par) {
vst[cur] = true;
{
vector<pair<int, int>> numE;
for (auto &e : adj[cur]) {
if (e.second == par) {
numE.push_back(e);
}
}
if (numE.size() == 2) {
vst[numE[0].second] = true;
cyc[cur] = cyc[numE[0].second] = true;
cycRoot = cur;
nxt[cur] = numE[0];
nxt[numE[0].second] = {numE[1].first, cur};
return -1;
}
}
for (auto &e : adj[cur]) {
if (e.second == par) continue;
if (vst[e.second] && !cyc[e.second]) {
cyc[cur] = true;
nxt[cur] = e;
cycRoot = e.second;
return e.second;
}
else {
ll val = dfsCyc(e.second, cur);
if (val == -1) continue;
cyc[cur] = true;
nxt[cur] = e;
return cur == val ? -1 : val;
}
}
return -1;
}
ll mxLen = 0;
ll dfsTreeSz(int &cur, int &par) {
ll mx = 0;
ll nxtMx = 0;
for (auto &e : adj[cur]) {
if (e.second == par) continue;
if (cyc[e.second]) continue;
ll val = e.first + dfsTreeSz(e.second, cur);
if (val > mx) {
nxtMx = mx;
mx = val;
}
else if (val > nxtMx) {
nxtMx = val;
}
}
mxLen = max(mxLen, nxtMx + mx);
return mx;
}
ll solveComp(int &root) {
mxLen = 0;
int minusOne = -1;
dfsCyc(root, minusOne);
int x = cycRoot;
vector<int> cycle;
do {
cycle.push_back(x);
x = nxt[x].second;
} while (x != cycRoot);
for (int i = 0; i < cycle.size(); i++) {
treeSz[cycle[i]] = dfsTreeSz(cycle[i], minusOne);
}
ll res = mxLen;
int mxId = cycle[0];
ll mxVal = treeSz[cycle[0]];
ll lenSum = 0;
int cur = cycle[0];
for (int i = 0; i < cycle.size(); i++) {
if (cur == cycle[i] || mxId == cycle[i]) {
cur = cycle[i];
lenSum = nxt[cur].first;
cur = nxt[cur].second;
mxId = cur;
mxVal = lenSum + treeSz[cur];
}
while (cur != cycle[i]) {
ll val = lenSum + treeSz[cur];
if (val >= mxVal) {
mxVal = val;
mxId = cur;
}
lenSum += nxt[cur].first;
cur = nxt[cur].second;
}
res = max(res, treeSz[cycle[i]] + mxVal);
lenSum -= nxt[cycle[i]].first;
mxVal -= nxt[cycle[i]].first;
}
return res;
}
void dfs1(int &cur) {
vst[cur] = true;
for (auto &e : adj[cur]) {
if (vst[e.second]) continue;
dfs1(e.second);
}
}
int main() {
cin >> n;
adj = vector<vector<pair<int, int>>>(n);
cyc = vector<bool>(n);
nxt = vector<pair<int, int>>(n);
treeSz = vector<ll>(n);
for (int i = 0; i < n; i++) {
ll a, l;
cin >> a >> l;
adj[i].push_back({l, a-1});
adj[a-1].push_back({l, i});
}
vst = vector<bool>(n);
for (int i = 0; i < n; i++) {
if (vst[i]) continue;
dfs1(i);
comps.push_back(i);
}
vst = vector<bool>(n);
ll res = 0;
for (auto &e : comps) {
res += solveComp(e);
}
cout << res;
}
Compilation message
islands.cpp: In function 'll solveComp(int&)':
islands.cpp:82:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
82 | for (int i = 0; i < cycle.size(); i++) {
| ~~^~~~~~~~~~~~~~
islands.cpp:90:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
90 | for (int i = 0; i < cycle.size(); i++) {
| ~~^~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
6 |
Correct |
0 ms |
348 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
8 |
Correct |
0 ms |
348 KB |
Output is correct |
9 |
Correct |
0 ms |
348 KB |
Output is correct |
10 |
Correct |
0 ms |
348 KB |
Output is correct |
11 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
2 ms |
856 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
1628 KB |
Output is correct |
2 |
Correct |
18 ms |
4656 KB |
Output is correct |
3 |
Correct |
10 ms |
1884 KB |
Output is correct |
4 |
Correct |
4 ms |
1116 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
24 ms |
5872 KB |
Output is correct |
2 |
Correct |
36 ms |
9564 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
74 ms |
17320 KB |
Output is correct |
2 |
Correct |
78 ms |
23476 KB |
Output is correct |
3 |
Correct |
115 ms |
32536 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
150 ms |
31572 KB |
Output is correct |
2 |
Correct |
183 ms |
55784 KB |
Output is correct |
3 |
Correct |
202 ms |
65312 KB |
Output is correct |
4 |
Correct |
302 ms |
81844 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
404 ms |
79024 KB |
Output is correct |
2 |
Correct |
696 ms |
121448 KB |
Output is correct |
3 |
Correct |
299 ms |
62572 KB |
Output is correct |
4 |
Correct |
411 ms |
102652 KB |
Output is correct |
5 |
Correct |
372 ms |
103436 KB |
Output is correct |
6 |
Correct |
1018 ms |
73544 KB |
Output is correct |
7 |
Correct |
474 ms |
131072 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
469 ms |
131072 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |