# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
630425 | NintsiChkhaidze | Crocodile's Underground City (IOI11_crocodile) | C++14 | 516 ms | 72976 KiB |
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 "crocodile.h"
#include <bits/stdc++.h>
using namespace std;
#define s second
#define pb push_back
#define ll long long
#define f first
const int nn = 100005;
vector <pair<int,ll> > v[nn];
pair<ll,ll> dis[nn];
bool vis[nn];
int travel_plan(int N, int M, int R[][2], int L[], int K, int P[]){
for (int i = 0; i < M; i++){
v[R[i][0]].pb({R[i][1],L[i]});
v[R[i][1]].pb({R[i][0],L[i]});
}
for (int i=0;i<N; i++)
dis[i] = {1e18,1e18};
using T = pair<ll,int>;
priority_queue <T, vector <T>, greater <T>> pq;
for (int i = 0; i < K; i++)
dis[P[i]] = {0LL,0LL},pq.push({0LL,P[i]});
while(pq.size()){
ll d = pq.top().f;
int x = pq.top().s;
pq.pop();
vis[x]=1;
if (d != dis[x].s) continue;
for (auto [to,w]: v[x]){
if (vis[to]) continue;
ll vl = w + d;
ll old = dis[to].s;
if (dis[to].f > vl) {
dis[to].s = dis[to].f;
dis[to].f = vl;
}else if (dis[to].s > vl){
dis[to].s = vl;
}
if (dis[to].s < old) pq.push({dis[to].s, to});
}
}
return dis[0].s;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |