이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "crocodile.h"
using namespace std;
typedef pair<int, int> ii;
typedef vector<ii> vi;
typedef vector<vi> vvi;
const int MAXN = 111111;
int visit[MAXN];
vvi linkd;
int travel_plan(int N, int M, int R[][2], int L[], int K, int P[])
{
vvi(N).swap(linkd);
memset( visit, 0, sizeof visit);
for(int i=0; i<M; i++){
linkd[ R[i][0] ].push_back( { R[i][1], L[i] } );
linkd[ R[i][1] ].push_back( { R[i][0], L[i] } );
} priority_queue<ii> pq;
for(int i=0; i<K; i++) pq.push( { 0, P[i] } ), visit[ P[i] ] = 1;
while(!pq.empty()){
int here = pq.top().second, d = -pq.top().first; pq.pop();
if( ++visit[here] == 1 ) continue;
if( here == 0 ) return d;
for(auto it : linkd[here])
pq.push( { -d-it.second, it.first } );
}
return -1;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |