Submission #216632

#TimeUsernameProblemLanguageResultExecution timeMemory
216632songcIslands (IOI08_islands)C++14
90 / 100
829 ms131076 KiB
#include <bits/stdc++.h> #define pb push_back #define all(v) v.begin(),v.end() #define fi first #define se second #define INF (1ll<<60) using namespace std; typedef long long LL; typedef pair<int,int> pii; int N, M; LL ans, ret; int P[1000010], W[1000010]; LL R[1000010], mx[1000010]; bool chk[1000010]; vector<int> adj[1000010]; vector<LL> V, S; int cyc(int u){ if (chk[u]) return u; chk[u] = true; R[u] = cyc(P[u]); if (R[u]){ V.pb(u), S.pb(W[u]); return (R[u]==u)?0:R[u]; } chk[u] = false; return 0; } LL dfs(int u){ mx[u]=0; chk[u] = true; for (int v : adj[u]){ if (chk[v]) continue; R[u] = dfs(v) + W[v]; ret = max(ret, (LL)mx[u]+R[u]); mx[u] = max(mx[u], R[u]); } return mx[u]; } void dia(int u){ V.clear(), S.clear(); cyc(u); reverse(all(V)); reverse(all(S)); for (LL &v : V) v = dfs(v); M = V.size(); for (int i=M-1; i>0; i--) swap(S[i], S[i-1]); for (int i=1; i<M; i++) S[i] += S[i-1]; LL m1=-INF, m2=-INF; for (int i=0; i<M; i++){ ret = max(ret, m1+S[i]+V[i]); ret = max(ret, m2-S[i]+V[i]+S[M-1]); m1 = max(m1, V[i]-S[i]); m2 = max(m2, V[i]+S[i]); } } int main(){ scanf("%d", &N); for (int i=1; i<=N; i++){ scanf("%d %lld", &P[i], &W[i]); adj[P[i]].pb(i); } for (int i=1; i<=N; i++){ if (chk[i]) continue; dia(i); ans+=ret, ret=0; } printf("%lld\n", ans); return 0; }

Compilation message (stderr)

islands.cpp: In function 'int main()':
islands.cpp:63:32: warning: format '%lld' expects argument of type 'long long int*', but argument 3 has type 'int*' [-Wformat=]
   scanf("%d %lld", &P[i], &W[i]);
                           ~~~~~^
islands.cpp:61:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &N);
  ~~~~~^~~~~~~~~~
islands.cpp:63:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %lld", &P[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...