# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
396286 |
2021-04-29T16:41:42 Z |
Berted |
Islands (IOI08_islands) |
C++14 |
|
1593 ms |
131076 KB |
#include <iostream>
#include <vector>
#include <algorithm>
#include <deque>
#define ll long long
#define pii pair<int, int>
#define pip pair<int, pii>
#define fst first
#define snd second
using namespace std;
const int SZ = 1000000;
int N;
pip edge[2 * SZ + 5]; int szz = 0;
int H[SZ + 5]; vector<int> vis;
vector<pii> cyc;
ll DP[SZ + 5];
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 (int i = lower_bound(edge, edge + szz, make_pair(u, make_pair(-1, -1))) - edge; i < szz && edge[i].fst == u; i++)
{
const pii& v = edge[i].snd;
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 (int i = lower_bound(edge, edge + szz, make_pair(u, make_pair(-1, -1))) - edge; i < szz && edge[i].fst == u; i++)
{
const pii& v = edge[i].snd;
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()
{
ios :: sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> N;
for (int i = 0; i < N; i++)
{
int u, c; cin >> u >> c; u--;
edge[szz++] = {u, {i, c}};
edge[szz++] = {i, {u, c}};
H[i] = -1;
}
sort(edge, edge + szz);
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 << " " << " " << cyc[i].fst << " " << 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] - t, 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:97: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]
97 | for (int i = 1; i < cyc.size(); i++)
| ~~^~~~~~~~~~~~
islands.cpp:111: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]
111 | for (int i = 0; i < cyc.size(); i++)
| ~~^~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
332 KB |
Output is correct |
3 |
Correct |
1 ms |
332 KB |
Output is correct |
4 |
Correct |
1 ms |
332 KB |
Output is correct |
5 |
Correct |
1 ms |
332 KB |
Output is correct |
6 |
Correct |
1 ms |
332 KB |
Output is correct |
7 |
Correct |
1 ms |
332 KB |
Output is correct |
8 |
Correct |
1 ms |
332 KB |
Output is correct |
9 |
Correct |
1 ms |
332 KB |
Output is correct |
10 |
Correct |
1 ms |
332 KB |
Output is correct |
11 |
Correct |
1 ms |
332 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
332 KB |
Output is correct |
2 |
Correct |
1 ms |
332 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
332 KB |
Output is correct |
2 |
Correct |
3 ms |
716 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
11 ms |
1100 KB |
Output is correct |
2 |
Correct |
26 ms |
3684 KB |
Output is correct |
3 |
Correct |
21 ms |
1232 KB |
Output is correct |
4 |
Correct |
7 ms |
716 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
34 ms |
5008 KB |
Output is correct |
2 |
Correct |
48 ms |
6172 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
115 ms |
10920 KB |
Output is correct |
2 |
Correct |
119 ms |
17764 KB |
Output is correct |
3 |
Correct |
138 ms |
29892 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
191 ms |
15960 KB |
Output is correct |
2 |
Correct |
267 ms |
46524 KB |
Output is correct |
3 |
Correct |
314 ms |
53300 KB |
Output is correct |
4 |
Correct |
361 ms |
77096 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
531 ms |
31976 KB |
Output is correct |
2 |
Correct |
801 ms |
100364 KB |
Output is correct |
3 |
Correct |
397 ms |
30076 KB |
Output is correct |
4 |
Correct |
529 ms |
77540 KB |
Output is correct |
5 |
Correct |
494 ms |
76724 KB |
Output is correct |
6 |
Correct |
1593 ms |
37216 KB |
Output is correct |
7 |
Correct |
530 ms |
131072 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
417 ms |
131076 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |