제출 #151547

#제출 시각아이디문제언어결과실행 시간메모리
151547luciocfIslands (IOI08_islands)C++14
90 / 100
1459 ms131076 KiB
#include <bits/stdc++.h> #define ff first #define ss second using namespace std; typedef long long ll; typedef pair<int, int> pii; const int maxn = 1e6+1; const ll inf = 1e18+10; int n; int peso[maxn]; int firstCycle, lastCycle, backEdge; int pai[maxn], edgePai[maxn]; ll pref[maxn]; ll maiorDist[maxn], maiorDist2; int indDist; bitset<maxn> mark, markCycle; vector<pii> grafo[maxn]; void findCycle(int u, int p) { mark[u] = 1; for (auto v: grafo[u]) { if (v.ss == p) continue; if (mark[v.ff]) { firstCycle = u, lastCycle = v.ff; backEdge = peso[v.ss]; continue; } pai[v.ff] = u, edgePai[v.ff] = peso[v.ss]; findCycle(v.ff, v.ss); } } void dfs(int u, int p, int root, ll dist) { if (dist >= maiorDist[root]) indDist = u; maiorDist[root] = max(maiorDist[root], dist); for (auto v: grafo[u]) if (v.ff != p && !markCycle[v.ff]) dfs(v.ff, u, root, dist+1ll*peso[v.ss]); } void dfs2(int u, int p, ll dist) { maiorDist2 = max(maiorDist2, dist); for (auto v: grafo[u]) if (v.ff != p && !markCycle[v.ff]) dfs2(v.ff, u, dist+1ll*peso[v.ss]); } int main(void) { scanf("%d", &n); for (int i = 1; i <= n; i++) { int u, w; scanf("%d %d", &u, &w); peso[i] = w; grafo[u].push_back({i, i}); grafo[i].push_back({u, i}); } ll ans = 0; vector<int> ciclo; for (int T = 1; T <= n; T++) { if (mark[T]) continue; findCycle(T, 0); int at = lastCycle; ll soma = backEdge; ciclo.clear(); while (true) { ciclo.push_back(at); markCycle[at] = 1; if (at == firstCycle) break; soma += 1ll*edgePai[at]; at = pai[at]; } reverse(ciclo.begin(), ciclo.end()); ll M = 0, diam = 0; for (int i = 0; i < ciclo.size(); i++) { int c = ciclo[i]; if (i > 0) pref[i] = pref[i-1] + 1ll*edgePai[c]; dfs(c, 0, c, 0); maiorDist2 = 0; markCycle[c] = 0; dfs2(indDist, 0, 0); markCycle[c] = 1; diam = max(diam, maiorDist2); } ll maxi1 = -inf, maxi2 = -inf; for (int i = 0; i < ciclo.size(); i++) { int u = ciclo[i]; M = max(M, maiorDist[u]+pref[i] + maxi1); maxi1 = max(maxi1, maiorDist[u]-pref[i]); M = max(M, maiorDist[u]-pref[i] + maxi2 + soma); maxi2 = max(maxi2, maiorDist[u]+pref[i]); } ans += max(M, diam); } printf("%lld\n", ans); }

컴파일 시 표준 에러 (stderr) 메시지

islands.cpp: In function 'int main()':
islands.cpp:114:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < ciclo.size(); i++)
                   ~~^~~~~~~~~~~~~~
islands.cpp:133:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < ciclo.size(); i++)
                   ~~^~~~~~~~~~~~~~
islands.cpp:72:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
  ~~~~~^~~~~~~~~~
islands.cpp:77:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d", &u, &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...