Submission #694526

#TimeUsernameProblemLanguageResultExecution timeMemory
694526ac2huRace (IOI11_race)C++14
21 / 100
127 ms13980 KiB
#include <bits/stdc++.h> using namespace std; #include "race.h" const int MX = 2e5 + 10; int n, k, ans = 1e9, timer = 0, tin[MX], tout[MX], rev[MX], d[MX], ed[MX], siz[MX], bigc[MX]; vector<pair<int,int>> adj[MX]; map<int, int> mnedge; void dfs2(int v,int p, bool keep){// keep for(auto [e, w] : adj[v]){ if(p != e && bigc[v] != e)dfs2(e, v, false); } if(bigc[v] != -1)dfs2(bigc[v], v, true); if(mnedge.find(d[v] + k) != mnedge.end())ans = min(ans, mnedge[d[v] + k] - ed[v]); mnedge[d[v]] = ed[v]; for(auto [e, w] : adj[v]){ if(e == p || e == bigc[v])continue; for(int st = tin[e];st<=tout[e];st++){ int node = rev[st]; // d[node] + d[x] - 2*d[v] = k => d[x] = k + 2*d[v] - d[node] int c = k + 2*d[v] - d[node]; if(mnedge.find(c) != mnedge.end())ans = min(ans, mnedge[c] + ed[node] - 2*ed[v]); } for(int st = tin[e];st<=tout[e];st++){ mnedge[d[rev[st]]] = ed[rev[st]]; } } if(!keep){ mnedge.erase(d[v]); for(auto [e, w] : adj[v]){ if(e == p)continue; for(int st = tin[e];st<=tout[e];st++){ mnedge.erase(d[rev[st]]); } } } } void dfs1(int v,int p){ int mx = -1; rev[timer] = v; tin[v] = timer++; bigc[v] = -1; siz[v] = 1; for(auto [e, w] : adj[v]){ if(e == p)continue; d[e] = d[v] + w; ed[e] = ed[v] + 1; dfs1(e, v); if(siz[e] > mx){ bigc[v] = e; siz[v] += siz[e]; mx = siz[e]; } } tout[v] = timer; } int best_path(int N, int K, int H[][2], int L[]){ n = N, k = K; for(int i = 0;i + 1<n;i++){ int a = H[i][0], b = H[i][1], c = L[i]; adj[a].push_back({b, c}); adj[b].push_back({a, c}); } dfs1(0, -1); dfs2(0, -1, true); if(ans > 1e8) return -1; return ans; } // signed main() { // iostream::sync_with_stdio(0);cin.tie(0); // }

Compilation message (stderr)

race.cpp: In function 'void dfs2(int, int, bool)':
race.cpp:9:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
    9 |     for(auto [e, w] : adj[v]){
      |              ^
race.cpp:15:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   15 |     for(auto [e, w] : adj[v]){
      |              ^
race.cpp:29:18: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   29 |         for(auto [e, w] : adj[v]){
      |                  ^
race.cpp: In function 'void dfs1(int, int)':
race.cpp:43:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   43 |     for(auto [e, w] : adj[v]){
      |              ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...