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;
typedef long long LL;
typedef pair<int, int> pii;
int N, M;
vector<pii> G[101010];
set<pii> U;
int F[101010], S[101010];
bool chk[101010];
int travel_plan(int n, int m, int r[][2], int l[], int k, int p[])
{
    N=n, M=m;
    for (int i=0; i<M; i++){
        G[r[i][0]].push_back(pii(r[i][1], l[i]));
        G[r[i][1]].push_back(pii(r[i][0], l[i]));
    }
    for (int i=0; i<k; i++){
        U.insert(pii(0, p[i]));
        chk[p[i]]=true;
    }
    while(!U.empty()){
        int u=U.begin()->second;
        U.erase(U.begin());
        chk[u] = true;
        for (pii v : G[u]){
            if (chk[v.first]) continue;
            if (!F[v.first] || F[v.first] > v.second+S[u]){
                U.erase(pii(S[v.first], v.first));
                S[v.first] = F[v.first], F[v.first] = v.second+S[u];
                if (S[v.first]) U.insert(pii(S[v.first], v.first));
            }
            else if (!S[v.first] || S[v.first] > v.second+S[u]){
                U.erase(pii(S[v.first], v.first));
                S[v.first] = v.second+S[u];
                U.insert(pii(S[v.first], v.first));
            }
        }
    }
    return S[0];
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |