# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
53784 |
2018-07-01T07:27:44 Z |
ics0503 |
Islands (IOI08_islands) |
C++17 |
|
2000 ms |
95740 KB |
#include<iostream>
#include<vector>
using namespace std;
vector<int>edge[1212121];
long long RD[1212121], D[1212121], SV[1212121], L[1212121];
int X[1212121], indeg[1212121], ck[1212121], Y[1212121], V[1212121];
long long max(long long a, long long b) { if (a < b)return b; return a; }
long long get_RD(int x) { // O(E)
if (edge[x].size() < 2)return 0;
long long mx1 = 0, mxw, mx2 = 0;
for (int &nxt : edge[x])if (mx1 < D[nxt] + Y[nxt])mx1 = D[nxt] + Y[nxt], mxw = nxt;
for (int &nxt : edge[x])if (nxt != mxw && mx2 < D[nxt] + Y[nxt])mx2 = D[nxt] + Y[nxt];
return mx1 + mx2;
}
int main() {
ios_base::sync_with_stdio(false);
vector<long long>Q;
long long n, i, j; cin >> n;
for (i = 1; i <= n; i++) {
cin >> X[i] >> Y[i], indeg[X[i]]++, edge[X[i]].push_back(i); // E == N
if (X[i] == i)return 0;
}
for (i = 1; i <= n; i++)if (indeg[i] == 0)Q.push_back(i);
while (!Q.empty()) { // O(N)
long long now = Q.back(); Q.pop_back();
RD[now] = max(RD[now], get_RD(now));
RD[X[now]] = max(RD[X[now]], RD[now]);
D[X[now]] = max(D[X[now]], D[now] + Y[now]);
if (--indeg[X[now]] == 0)Q.push_back(X[now]);
ck[now] = 1;
}
long long ans = 0;
for (i = 1; i <= n; i++) if (!ck[i]) { // O(N)
long long now = i, S = 0, sz = 0, res = 0, mx1 = -1e18, mx2 = -1e18;
while (!ck[now]) { // O(Cyc)
L[++sz] = D[now]; V[sz] = Y[now];
res = max(res, max(RD[now], get_RD(now)));
S += Y[now];
ck[now] = 1; now = X[now];
}
for (i = 1; i <= sz; i++)SV[i] = SV[i - 1] + V[i];
for (i = 1; i <= sz; i++) {
res = max(res, max(L[i] + SV[i - 1] + mx1, L[i] + S - SV[i - 1] + mx2));
mx1 = max(mx1, L[i] - SV[i - 1]);
mx2 = max(mx2, L[i] + SV[i - 1]);
}
ans += res;
}
cout << ans;
return 0;
}
Compilation message
islands.cpp: In function 'int main()':
islands.cpp:18:18: warning: unused variable 'j' [-Wunused-variable]
long long n, i, j; cin >> n;
^
islands.cpp: In function 'long long int get_RD(int)':
islands.cpp:12:26: warning: 'mxw' may be used uninitialized in this function [-Wmaybe-uninitialized]
for (int &nxt : edge[x])if (nxt != mxw && mx2 < D[nxt] + Y[nxt])mx2 = D[nxt] + Y[nxt];
^~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
28 ms |
28792 KB |
Output is correct |
2 |
Correct |
27 ms |
28900 KB |
Output is correct |
3 |
Correct |
30 ms |
29080 KB |
Output is correct |
4 |
Correct |
26 ms |
29080 KB |
Output is correct |
5 |
Correct |
26 ms |
29080 KB |
Output is correct |
6 |
Correct |
25 ms |
29080 KB |
Output is correct |
7 |
Correct |
27 ms |
29088 KB |
Output is correct |
8 |
Correct |
28 ms |
29088 KB |
Output is correct |
9 |
Correct |
28 ms |
29088 KB |
Output is correct |
10 |
Correct |
26 ms |
29088 KB |
Output is correct |
11 |
Correct |
30 ms |
29088 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
26 ms |
29112 KB |
Output is correct |
2 |
Correct |
27 ms |
29164 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
27 ms |
29292 KB |
Output is correct |
2 |
Correct |
26 ms |
29420 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
42 ms |
30028 KB |
Output is correct |
2 |
Correct |
67 ms |
31268 KB |
Output is correct |
3 |
Correct |
36 ms |
31268 KB |
Output is correct |
4 |
Correct |
32 ms |
31268 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
65 ms |
32108 KB |
Output is correct |
2 |
Correct |
63 ms |
34696 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
109 ms |
40020 KB |
Output is correct |
2 |
Correct |
113 ms |
42604 KB |
Output is correct |
3 |
Correct |
142 ms |
45500 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
278 ms |
50336 KB |
Output is correct |
2 |
Correct |
241 ms |
58716 KB |
Output is correct |
3 |
Correct |
223 ms |
63596 KB |
Output is correct |
4 |
Correct |
285 ms |
71012 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
306 ms |
71012 KB |
Output is correct |
2 |
Correct |
619 ms |
84596 KB |
Output is correct |
3 |
Correct |
409 ms |
84596 KB |
Output is correct |
4 |
Correct |
422 ms |
87884 KB |
Output is correct |
5 |
Correct |
418 ms |
87884 KB |
Output is correct |
6 |
Correct |
862 ms |
87884 KB |
Output is correct |
7 |
Correct |
406 ms |
93884 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
387 ms |
93884 KB |
Output is correct |
2 |
Correct |
372 ms |
93884 KB |
Output is correct |
3 |
Correct |
375 ms |
95740 KB |
Output is correct |
4 |
Execution timed out |
2053 ms |
95740 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |