Submission #559335

#TimeUsernameProblemLanguageResultExecution timeMemory
559335fatemetmhrMousetrap (CEOI17_mousetrap)C++17
25 / 100
782 ms60128 KiB
// Be name khoda // #include <bits/stdc++.h> using namespace std; typedef long long ll; #define all(x) x.begin(), x.end() #define fi first #define se second #define pb push_back const int maxn5 = 1e6 + 10; const int inf = 1e9; int tale, mo, dp[maxn5], id[maxn5]; int htotale[maxn5], fen[maxn5]; vector <int> adj[maxn5], ver; vector <pair<int, int>> av; inline bool dfs(int v, int par){ if(v == tale){ dp[v] = 0; htotale[v] = 0; return true; } int mx = 0, smx = 0; int z = -1; for(auto u : adj[v]) if(u != par){ bool re = dfs(u, v); if(re){ z = u; } if(dp[u] >= mx){ smx = mx; mx = dp[u]; } else smx = max(smx, dp[u]); } if(z == -1){ dp[v] = smx + adj[v].size() - 1; //cout << "false " << v << ' ' << dp[v] << endl; return false; } htotale[v] = htotale[z] + adj[v].size() - 2 + (v == mo); for(auto u : adj[v]) if(u != par && u != z){ av.pb({dp[u] + htotale[v], v}); //cout << "aha " << v << ' ' << u << ' ' << dp[u] << ' ' << htotale[v] << endl; } ver.pb(v); return true; } inline void add(int id){ for(; id < maxn5; id += id & -id) fen[id]++; } inline int get(int id){ int ret = 0; for(; id; id -= id & -id) ret += fen[id]; return ret; } inline bool ok(int v){ v = id[v]; return get(v) < v; } int main(){ ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, a, b; cin >> n >> a >> b; a--; b--; mo = b; tale = a; for(int i = 0; i < n - 1; i++){ int a, b; cin >> a >> b; a--; b--; adj[a].pb(b); adj[b].pb(a); } assert(a != b); if(a == b) return cout << 0 << endl, 0; dfs(mo, -1); reverse(all(ver)); // az m be t hast assert(ver.size() == 1); int pos = 1; for(auto v : ver){ id[v] = pos++; } sort(all(av)); reverse(all(av)); int done = 0; int mx = 0; int ans = inf; for(auto [val, v] : av){ assert(done <= 1); //cout << "& " << val << ' ' << v << endl; ans = min(ans, val); if(ok(v)){ done++; add(id[v]); } else break; } cout << ans << endl; }

Compilation message (stderr)

mousetrap.cpp: In function 'int main()':
mousetrap.cpp:104:9: warning: unused variable 'mx' [-Wunused-variable]
  104 |     int mx = 0;
      |         ^~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...