This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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;
const int N = 90;
vector<tuple<int, ll, ll>> v[N];
bitset<N> bl;
priority_queue<pair<ll, int>> pq;
ll dis2[N][N];
ll dis[N];
ll change[N];
vector<int> Q[N];
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);
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]});
}
for(int i = 0; i < q; i++){
Q[U[i]].pb(i);
}
for(int i = 0; i < n; i++){
sort(Q[i].begin(), Q[i].end(), [&](int a, int b){
return T[a] > T[b];
});
}
for(int s = 0; s < n; s++){
fill(dis2[s], dis2[s]+n, inf);
for(int i = 0; i < n; i++) bl[i] = 0;
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});
}
}
}
for(int s = 0; s < n; s++){
ll t = 0;
while(!Q[s].empty()){
ll nxt = inf;
fill(dis, dis+n, inf);
for(int i = 0; i < n; i++) bl[i] = 0;
fill(change, change+n, inf);
dis[s] = t;
pq.push({-t, 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(int i = 0; i < n; i++) if(dis[i] != inf) dis[i]-=t;
nxt = min(nxt, *min_element(change, change+n));
if(nxt == inf) break;
t+=nxt;
if(!Q[s].empty() && T[Q[s].back()] < t){
int i = Q[s].back();
Q[s].pop_back();
if(dis[V[i]] != inf){
ans[i] = min(ans[i], dis[V[i]]);
continue;
}
for(int j = 0; j < n; j++) if(dis[j] != inf)
ans[i] = min(ans[i], S-T[i]+dis2[j][V[i]]);
}
}
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |