# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
261979 |
2020-08-12T08:44:01 Z |
evpipis |
Islands (IOI08_islands) |
C++11 |
|
727 ms |
131076 KB |
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define mp make_pair
#define pb push_back
typedef long long ll;
typedef pair<int, int> ii;
const int len = 1e6+5;
int deg[len], n, ccs;
ii par[len];
ll dep[len], best[len];
ll val[2*len], pref[2*len];
vector<int> order[len];
vector<ii> adj[len];
void dfs1(int u, int col){
deg[u] = 1;
order[col].pb(u);
if (deg[par[u].fi] == 2)
dfs1(par[u].fi, col);
}
void find_spec(){
queue<int> myq;
for (int i = 1; i <= n; i++){
deg[i] = adj[i].size();
if (deg[i] == 1)
myq.push(i);
}
while (!myq.empty()){
int u = myq.front(), p = par[u].fi;
myq.pop();
deg[p]--, deg[u]--;
if (deg[p] == 1)
myq.push(p);
}
ccs = 0;
for (int i = 1; i <= n; i++)
if (deg[i] == 2)
dfs1(i, ccs++);
/*printf("ccs = %d\n", ccs);
for (int i = 0; i < ccs; i++){
printf("cc#%d:", i);
for (auto u: order[i])
printf(" %d", u);
printf("\n");
}*/
}
ll dfs2(int u, int p = 0){
ll mx1 = 0, mx2 = 0, ans = 0;
for (auto v: adj[u]){
if (v.fi == p || deg[v.fi])
continue;
ans = max(ans, dfs2(v.fi, u));
dep[u] = max(dep[u], dep[v.fi]+v.se);
if (dep[v.fi]+v.se > mx1)
swap(mx1, mx2), mx1 = dep[v.fi]+v.se;
else if (dep[v.fi]+v.se > mx2)
mx2 = dep[v.fi]+v.se;
}
ans = max(ans, mx1+mx2);
return ans;
}
void find_diam(){
for (int i = 0; i < ccs; i++)
for (auto u: order[i])
best[i] = max(best[i], dfs2(u));
//for (int i = 0; i < ccs; i++)
// printf("best_without_specs[%d] = %lld\n", i, best[i]);
}
ll path(vector<int> &vec){
ll ans = 0;
int m = vec.size();
for (int i = 0; i < 2*m; i++)
val[i] = dep[vec[i%m]];
for (int i = 0; i < 2*m-1; i++)
pref[i+1] = pref[i]+par[vec[i%m]].se;
deque<int> deq;
for (int i = 0; i < 2*m; i++){
while (!deq.empty() && i-deq.front()+1 > m)
deq.pop_front();
if (!deq.empty())
ans = max(ans, pref[i]+val[i] + val[deq.front()]-pref[deq.front()]);
while (!deq.empty() && val[i]-pref[i] >= val[deq.back()]-pref[deq.back()])
deq.pop_back();
deq.push_back(i);
}
return ans;
}
void find_path(){
for (int i = 0; i < ccs; i++)
best[i] = max(best[i], path(order[i]));
//for (int i = 0; i < ccs; i++)
// printf("best_final[%d] = %lld\n", i, best[i]);
}
int main(){
scanf("%d", &n);
for (int i = 1; i <= n; i++){
int p, c;
scanf("%d %d", &p, &c);
adj[i].pb(mp(p, c));
adj[p].pb(mp(i, c));
par[i] = mp(p, c);
}
find_spec();
find_diam();
find_path();
ll ans = 0;
for (int i = 0; i < ccs; i++)
ans += best[i];
printf("%lld\n", ans);
return 0;
}
Compilation message
islands.cpp: In function 'int main()':
islands.cpp:121:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &n);
~~~~~^~~~~~~~~~
islands.cpp:124:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d", &p, &c);
~~~~~^~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
31 ms |
47352 KB |
Output is correct |
2 |
Correct |
31 ms |
47360 KB |
Output is correct |
3 |
Correct |
35 ms |
47352 KB |
Output is correct |
4 |
Correct |
31 ms |
47352 KB |
Output is correct |
5 |
Correct |
34 ms |
47352 KB |
Output is correct |
6 |
Correct |
34 ms |
47360 KB |
Output is correct |
7 |
Correct |
31 ms |
47352 KB |
Output is correct |
8 |
Correct |
31 ms |
47352 KB |
Output is correct |
9 |
Correct |
32 ms |
47360 KB |
Output is correct |
10 |
Correct |
31 ms |
47352 KB |
Output is correct |
11 |
Correct |
31 ms |
47360 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
32 ms |
47480 KB |
Output is correct |
2 |
Correct |
32 ms |
47480 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
33 ms |
47500 KB |
Output is correct |
2 |
Correct |
34 ms |
47744 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
43 ms |
48572 KB |
Output is correct |
2 |
Correct |
51 ms |
50936 KB |
Output is correct |
3 |
Correct |
42 ms |
48888 KB |
Output is correct |
4 |
Correct |
40 ms |
48120 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
60 ms |
52344 KB |
Output is correct |
2 |
Correct |
82 ms |
55416 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
137 ms |
62708 KB |
Output is correct |
2 |
Correct |
141 ms |
65936 KB |
Output is correct |
3 |
Correct |
165 ms |
75916 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
216 ms |
76024 KB |
Output is correct |
2 |
Correct |
289 ms |
95344 KB |
Output is correct |
3 |
Correct |
310 ms |
99044 KB |
Output is correct |
4 |
Correct |
371 ms |
120884 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
434 ms |
117840 KB |
Output is correct |
2 |
Runtime error |
727 ms |
131076 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
472 ms |
131076 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |