Submission #709771

#TimeUsernameProblemLanguageResultExecution timeMemory
709771Jarif_RahmanEscape Route (JOI21_escape_route)C++17
70 / 100
9096 ms281000 KiB
#include "escape_route.h" #include <bits/stdc++.h> #define pb push_back #define f first #define sc second using namespace std; typedef long long int ll; typedef string str; const ll inf = 5e17; vector<ll> calculate_necessary_time(int n, int m, ll S, int q, vector<int> A, vector<int> B, vector<ll> L, vector<ll> C, vector<int> U, vector<int> V, vector<ll> T){ vector<ll> ans(q, inf); vector<vector<tuple<int, ll, ll>>> v(n); for(int i = 0; i < m; i++){ v[A[i]].pb({B[i], L[i], C[i]}); v[B[i]].pb({A[i], L[i], C[i]}); } vector<vector<ll>> dis2(n); for(int s = 0; s < n; s++){ dis2[s].assign(n, inf); vector<bool> bl(n, 0); priority_queue<pair<ll, int>> pq; dis2[s][s] = 0; pq.push({0, s}); while(!pq.empty()){ int nd = pq.top().sc; pq.pop(); if(bl[nd]) continue; bl[nd] = 1; for(auto [x, l, c]: v[nd]) if((dis2[s][nd]%S+l<=c ? dis2[s][nd]+l:((dis2[s][nd]+S-1)/S)*S+l) < dis2[s][x]){ dis2[s][x] = (dis2[s][nd]%S+l<=c ? dis2[s][nd]+l:((dis2[s][nd]+S-1)/S)*S+l); pq.push({-dis2[s][x], x}); } } } vector<vector<vector<ll>>> dis1(n); vector<vector<ll>> sth(n); for(int s = 0; s < n; s++){ ll t = 0; while(1){ ll nxt = inf; sth[s].pb(t); dis1[s].pb(vector<ll>(n)); auto &dis = dis1[s].back(); dis.assign(n, inf); vector<ll> change(n, inf); vector<bool> bl(n, 0); priority_queue<pair<ll, int>> pq; dis[s] = t; pq.push({0, s}); while(!pq.empty()){ int nd = pq.top().sc; pq.pop(); if(bl[nd]) continue; bl[nd] = 1; for(auto [x, l, c]: v[nd]) if(dis[nd]+l <= min(dis[x]-1, c)){ dis[x] = dis[nd]+l; change[x] = c-dis[x]+1; pq.push({-dis[x], x}); } } for(ll &x: dis) if(x != inf) x-=t; nxt = min(nxt, *min_element(change.begin(), change.end())); if(nxt == inf) break; t+=nxt; } } for(int i = 0; i < q; i++){ int p = (upper_bound(sth[U[i]].begin(), sth[U[i]].end(), T[i])-sth[U[i]].begin())-1; if(dis1[U[i]][p][V[i]] != inf){ ans[i] = min(ans[i], dis1[U[i]][p][V[i]]); continue; } for(int j = 0; j < n; j++) if(dis1[U[i]][p][j] != inf) ans[i] = min(ans[i], S-T[i]+dis2[j][V[i]]); } return ans; }
#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...