Submission #229805

#TimeUsernameProblemLanguageResultExecution timeMemory
229805CaroLindaIslands (IOI08_islands)C++14
90 / 100
795 ms131076 KiB
#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+2 ; using namespace std ; int N , idx ; int to[MAXN] , cycle[MAXN] ; ll resp , best_diameter , sum , t ; 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] ) ; } void new_cycle(int x) { idx = 0 ; while( !vis[x] ) { vis[x] = true ; cycle[idx++] = x ; x = to[x] ; } reverse(cycle, cycle+idx ) ; while( cycle[idx-1] != x ) { vis[ cycle[idx-1] ] = false ; idx -- ; } reverse( cycle, cycle+idx ) ; best_diameter = sum = t = 0LL ; for(int i = 0 ; i < idx ; 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 < idx ; 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 < idx ; 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 (stderr)

islands.cpp:4:0: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
 #pragma GCC optimization ("O3")
 
islands.cpp:5:0: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
 #pragma GCC optimization ("unroll-loops")
 
islands.cpp: In function 'int main()':
islands.cpp:107:38: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'long long int*' [-Wformat=]
         scanf("%d%d", &to[i] , &W[i] ) ;
                                ~~~~~ ^
islands.cpp:105:21: warning: unused variable 'u' [-Wunused-variable]
     for(int i = 1 , u ; i <= N ; i++ )
                     ^
islands.cpp:104:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &N ) ;
     ~~~~~^~~~~~~~~~~
islands.cpp:107:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d%d", &to[i] , &W[i] ) ;
         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...