Submission #198879

#TimeUsernameProblemLanguageResultExecution timeMemory
198879arnold518Islands (IOI08_islands)C++14
90 / 100
2090 ms130656 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; const int MAXN = 1e6; int N; vector<pii> adj[MAXN+1]; pii to[MAXN+1]; ll ans, val; bool vis[MAXN+1]; vector<int> cyc; vector<ll> A, D; ll dfs(int now, ll dep) { vis[now]=true; ll ret=dep; ll ta=0, tb=0; for(pii &nxt : adj[now]) { if(vis[nxt.first]) continue; ll p=dfs(nxt.first, dep+nxt.second); ret=max(ret, p); if(p>ta) tb=ta, ta=p; else if(p>tb) tb=p; } val=max(val, ta+tb-dep-dep); return ret; } int main() { int i, j; scanf("%d", &N); for(i=1; i<=N; i++) { int v, w; scanf("%d%d", &v, &w); to[i]={v, w}; adj[v].push_back({i, w}); } for(i=1; i<=N; i++) { if(vis[i]) continue; int now=i; cyc.clear(); while(!vis[now]) { cyc.push_back(now); vis[now]=1; now=to[now].first; } reverse(cyc.begin(), cyc.end()); while(!cyc.empty() && cyc.back()!=now) vis[cyc.back()]=0, cyc.pop_back(); reverse(cyc.begin(), cyc.end()); A=D=vector<ll>(0); ll s=0; val=0; D.push_back(0); for(i=0; i<cyc.size(); i++) A.push_back(dfs(cyc[i], 0)); for(i=0; i<cyc.size(); i++) D.push_back(D.back()+to[cyc[i]].second), s+=to[cyc[i]].second; D.pop_back(); ll t=-1e18; for(j=0; j<cyc.size(); j++) { if(j) val=max(val, D[j]+A[j]+t); t=max(t, A[j]-D[j]); } t=-1e18; for(j=0; j<cyc.size(); j++) { if(j) val=max(val, s-D[j]+A[j]+t); t=max(t, D[j]+A[j]); } ans+=val; } printf("%lld", ans); }

Compilation message (stderr)

islands.cpp: In function 'int main()':
islands.cpp:72:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(i=0; i<cyc.size(); i++) A.push_back(dfs(cyc[i], 0));
            ~^~~~~~~~~~~
islands.cpp:73:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(i=0; i<cyc.size(); i++) D.push_back(D.back()+to[cyc[i]].second), s+=to[cyc[i]].second;
            ~^~~~~~~~~~~
islands.cpp:77:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(j=0; j<cyc.size(); j++)
            ~^~~~~~~~~~~
islands.cpp:84:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(j=0; j<cyc.size(); j++)
            ~^~~~~~~~~~~
islands.cpp:42:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &N);
  ~~~~~^~~~~~~~~~
islands.cpp:46:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d", &v, &w);
   ~~~~~^~~~~~~~~~~~~~~~
#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...