# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
396268 |
2021-04-29T16:01:17 Z |
Berted |
Islands (IOI08_islands) |
C++14 |
|
1224 ms |
131072 KB |
#include <iostream>
#include <vector>
#include <algorithm>
#include <deque>
#define ll long long
#define pii pair<int, int>
#define fst first
#define snd second
using namespace std;
int N;
vector<pii> adj[1000001];
int H[1000001]; vector<int> vis;
vector<pii> cyc;
ll DP[1000001];
deque<pair<ll, int>> dq;
ll ans = 0;
int DFS1(int u, pii p)
{
int ret = H[u] + 1;
vis.push_back(u);
//cerr << "D1: " << u << " " << H[u] << "\n";
for (const pii &v : adj[u])
{
if (p == v) {p = {-1, -1}; continue;}
if (H[v.fst] == -1)
{
H[v.fst] = H[u] + 1;
ret = DFS1(v.fst, {u, v.snd});
}
else if (H[v.fst] < H[u]) {ret = H[v.fst];}
if (ret <= H[u])
{
cyc.push_back({u, v.snd});
break;
}
}
return ret;
}
ll DFS2(int u)
{
ll M[2] = {0, 0}; ll ret = 0;
for (const pii &v : adj[u])
{
if (H[v.fst] == -1)
{
H[v.fst] = H[u] + 1;
ret = max(ret, DFS2(v.fst));
if (DP[v.fst] + v.snd > M[0]) {M[1] = M[0]; M[0] = DP[v.fst] + v.snd;}
else if (DP[v.fst] + v.snd > M[1]) {M[1] = DP[v.fst] + v.snd;}
DP[u] = max(DP[u], DP[v.fst] + v.snd);
}
}
return max(ret, M[0] + M[1]);
}
int main()
{
cin >> N;
for (int i = 0; i < N; i++)
{
int u, c; cin >> u >> c; u--;
adj[u].push_back({i, c});
adj[i].push_back({u, c});
H[i] = -1;
}
for (int k = 0; k < N; k++)
{
if (H[k] == -1)
{
ll rr = 0; H[k] = 0;
DFS1(k, {-1, -1});
for (const auto &u : vis) H[u] = -1;
vis.clear();
for (const auto &u : cyc) H[u.fst] = 0;
for (const auto &u : cyc) rr = max(rr, DFS2(u.fst));
//cerr << k << ": " << rr << " " << cyc.size() << "\n";
ll s = 0, t = 0;
for (int i = 1; i < cyc.size(); i++)
{
//cerr << "id: " << i << " " << cyc[i].fst << " - " << DP[cyc[i].fst] << "\n";
s += cyc[i].snd;
while (dq.size() && dq.back().fst <= s + DP[cyc[i].fst])
{
//cerr << "Popped\n";
dq.pop_back();
}
//cerr << "Pushed: " << s + DP[cyc[i].fst] << ", " << i << "\n";
dq.push_back({s + DP[cyc[i].fst], i});
}
s += cyc[0].snd;
for (int i = 0; i < cyc.size(); i++)
{
if (dq.front().snd == i) dq.pop_front();
//cerr << i << " " << dq.front().fst << " " << t << " " << DP[cyc[i].fst] << "\n";
rr = max(rr, dq.front().fst + t + DP[cyc[i].fst]);
while (dq.size() && dq.back().fst + t <= s + DP[cyc[i].fst]) {dq.pop_back();}
dq.push_back({s + DP[cyc[i].fst], i});
t -= cyc[(i + 1) % cyc.size()].snd;
}
dq.clear();
cyc.clear();
//cerr << k << ": " << rr << "\n";
ans += rr;
}
}
cout << ans << "\n";
return 0;
}
Compilation message
islands.cpp: In function 'int main()':
islands.cpp:89:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
89 | for (int i = 1; i < cyc.size(); i++)
| ~~^~~~~~~~~~~~
islands.cpp:103:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
103 | for (int i = 0; i < cyc.size(); i++)
| ~~^~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
15 ms |
23756 KB |
Output is correct |
2 |
Incorrect |
16 ms |
23780 KB |
Output isn't correct |
3 |
Incorrect |
16 ms |
23760 KB |
Output isn't correct |
4 |
Correct |
16 ms |
23676 KB |
Output is correct |
5 |
Incorrect |
16 ms |
23756 KB |
Output isn't correct |
6 |
Correct |
16 ms |
23756 KB |
Output is correct |
7 |
Incorrect |
16 ms |
23756 KB |
Output isn't correct |
8 |
Correct |
16 ms |
23756 KB |
Output is correct |
9 |
Correct |
15 ms |
23796 KB |
Output is correct |
10 |
Correct |
16 ms |
23788 KB |
Output is correct |
11 |
Correct |
16 ms |
23804 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
16 ms |
23804 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
17 ms |
23812 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
29 ms |
24932 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
64 ms |
29148 KB |
Output is correct |
2 |
Incorrect |
103 ms |
31600 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
175 ms |
38212 KB |
Output is correct |
2 |
Correct |
182 ms |
42948 KB |
Output is correct |
3 |
Incorrect |
247 ms |
55864 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
328 ms |
49152 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
847 ms |
89144 KB |
Output is correct |
2 |
Incorrect |
1224 ms |
131072 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
867 ms |
131072 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |