# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
229799 | 2020-05-06T14:51:53 Z | CaroLinda | Islands (IOI08_islands) | C++14 | 808 ms | 131076 KB |
#include <bits/stdc++.h> #pragma GCC target ("avx2") #pragma GCC optimization ("O3") #pragma GCC optimization ("unroll-loops") #define mkt make_tuple #define debug printf #define all(x) x.begin(),x.end() #define lp(i,a,b) for(int i = a ; i< b ; i++) #define ss second #define ff first #define ll long long #define pb push_back #define pii pair<int,int> #define mk make_pair const int MAXN = 1e6+10 ; using namespace std ; int N ; int to[MAXN] ; ll resp , best_diameter ; ll W[MAXN] , D[MAXN] ; ll prof[MAXN][2] ; vector< int > adj[MAXN] ; bool vis[MAXN] ; void dfs( int x ) { vis[x] = true ; for(int child : adj[x] ) { if(vis[child]) continue ; dfs(child) ; if( prof[child][0] + W[child] >= prof[x][0] ) { prof[x][1] = prof[x][0] ; prof[x][0] = prof[child][0] + W[child] ; } else if( prof[child][0] + W[child] > prof[x][1] ) prof[x][1] = prof[child][0] + W[child] ; } best_diameter = max( best_diameter, prof[x][0] + prof[x][1] ) ; } inline void new_cycle(int x) { vector<int> cycle ; while( !vis[x] ) { vis[x] = true ; cycle.pb(x) ; x = to[x] ; } reverse( all(cycle) ) ; for(int i = cycle.size() - 1 ; cycle[i] != x ; i -- ) { vis[ cycle[i] ] = false ; cycle.pop_back() ; } reverse( all(cycle) ) ; best_diameter = 0 ; ll sum = 0LL , t = 0LL ; for(int i = 0 ; i < cycle.size() ; i++ ) { dfs( cycle[i] ) ; sum += W[ cycle[i] ] ; if( i ) D[ cycle[i] ] = D[ cycle[i-1] ] + W[ cycle[i-1] ] ; } for(int i = 0 ; i < cycle.size() ; i++ ) { if( i ) best_diameter = max( best_diameter , t + D[ cycle[i] ] + prof[ cycle[i] ][0] ) ; t = max(t , -D[ cycle[i] ] + prof[ cycle[i] ][0] ) ; } t = 0LL ; for(int i = 0 ; i < cycle.size() ; i++ ) { if(i) best_diameter = max( best_diameter , sum - D[ cycle[i] ] + prof[ cycle[i] ][0] + t ) ; t = max( t , D[ cycle[i] ] + prof[ cycle[i] ][0] ) ; } resp += best_diameter ; } int main() { scanf("%d", &N ) ; for(int i = 1 , u ; i <= N ; i++ ) { scanf("%d%d", &to[i] , &W[i] ) ; adj[ to[i] ].pb(i) ; } for(int i = 1 ; i <= N ; i++ ) if( !vis[i] ) new_cycle(i) ; printf("%lld\n" , resp ) ; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 22 ms | 23928 KB | Output is correct |
2 | Correct | 16 ms | 23808 KB | Output is correct |
3 | Correct | 17 ms | 23936 KB | Output is correct |
4 | Correct | 17 ms | 23936 KB | Output is correct |
5 | Correct | 16 ms | 23808 KB | Output is correct |
6 | Correct | 17 ms | 23808 KB | Output is correct |
7 | Correct | 16 ms | 23808 KB | Output is correct |
8 | Correct | 17 ms | 23808 KB | Output is correct |
9 | Correct | 18 ms | 23808 KB | Output is correct |
10 | Correct | 17 ms | 23808 KB | Output is correct |
11 | Correct | 16 ms | 23808 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 17 ms | 23936 KB | Output is correct |
2 | Correct | 17 ms | 23936 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 17 ms | 24064 KB | Output is correct |
2 | Correct | 18 ms | 24192 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 23 ms | 24832 KB | Output is correct |
2 | Correct | 31 ms | 26240 KB | Output is correct |
3 | Correct | 26 ms | 25344 KB | Output is correct |
4 | Correct | 21 ms | 24576 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 38 ms | 27256 KB | Output is correct |
2 | Correct | 58 ms | 30584 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 98 ms | 37240 KB | Output is correct |
2 | Correct | 94 ms | 39136 KB | Output is correct |
3 | Correct | 124 ms | 41968 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 167 ms | 50936 KB | Output is correct |
2 | Correct | 195 ms | 56540 KB | Output is correct |
3 | Correct | 206 ms | 62852 KB | Output is correct |
4 | Correct | 272 ms | 70244 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 330 ms | 56164 KB | Output is correct |
2 | Correct | 603 ms | 81884 KB | Output is correct |
3 | Correct | 320 ms | 77304 KB | Output is correct |
4 | Correct | 397 ms | 91604 KB | Output is correct |
5 | Correct | 381 ms | 88884 KB | Output is correct |
6 | Correct | 808 ms | 87132 KB | Output is correct |
7 | Correct | 461 ms | 96096 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 461 ms | 131076 KB | Execution killed with signal 9 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |