이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "crocodile.h"
using namespace std;
int travel_plan(int n, int m, int edges[][2], int w[], int k, int p[])
{
set<pair<int,int>> g[n];
for(int i =0;i<m;i++){
g[edges[i][0]].insert({edges[i][1],w[i]});
g[edges[i][1]].insert({edges[i][0],w[i]});
}
bool ex[n];
bool rem[n];
bool vis[n];
fill(rem,rem+n,0);
fill(ex,ex+n,0);
fill(vis,vis+n,0);
priority_queue<array<int,3>,vector<array<int,3>>,greater<array<int,3>>>pq; // dist,destination,origin
for(int i = 0;i<k;i++){
vis[p[i]]=1;
ex[p[i]]=1;
for(pair<int,int>pa : g[p[i]]){
pq.push({pa.second,pa.first,p[i]});
}
}
while(!pq.empty()){
array<int,3> a = pq.top();
pq.pop();
if(vis[a[1]]){
continue;
}
if(rem[a[1]]){
if(a[1]==0)
return a[0];
for(pair<int,int>p:g[a[1]]){
if(vis[p.first]) continue;
pq.push({a[0]+p.second,p.first,a[1]});
}
vis[a[1]]=1;
}
else{
//cout << "removing edge: " << a[1] << " " << a[2] << "\n";
rem[a[1]]=1;
}
}
return -1;
fill(vis,vis+n,0);
pq.push({0,0,-1});
vis[0]=1;
while(!pq.empty()){
array<int,3>a=pq.top();
pq.pop();
vis[a[1]]=1;
if(ex[a[1]]) return a[0];
for(pair<int,int>p:g[a[1]]){
if(vis[p.first]) continue;
pq.push({p.second+a[0],p.first,a[1]});
}
}
assert(0);
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... |