이 제출은 이전 버전의 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[])
{
unordered_map<int,int> g[n];
unordered_map<int,int>index[n];
for(int i =0;i<m;i++){
g[edges[i][0]][edges[i][1]]=w[i];
g[edges[i][1]][edges[i][0]]=w[i];
index[edges[i][0]][edges[i][1]]=i;
index[edges[i][1]][edges[i][0]]=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);
set<array<int,3>>pq; // dist,destination,origin
unordered_map<int,int>mp;
for(int i = 0;i<k;i++){
vis[p[i]]=1;
ex[p[i]]=1;
}
for(int i = 0;i<k;i++){
for(pair<int,int>pa : g[p[i]]){
if(vis[pa.first]) continue;
pq.insert({pa.second,pa.first,p[i]});
}
}
while(!pq.empty()){
array<int,3> a = *(pq.begin());
pq.erase(pq.begin());
if(vis[a[1]]){
continue;
}
if(rem[a[1]]){
for(pair<int,int>p:g[a[1]]){
if(vis[p.first]) continue;
if(mp[index[a[1]][p.first]]!=0&&mp[index[a[1]][p.first]]>a[0]+p.second){
pq.erase({mp[index[a[1]][p.first]],p.first,a[1]});
}
pq.insert({a[0]+p.second,p.first,a[1]});
mp[index[a[1]][p.first]]=a[0]+p.second;
}
vis[a[1]]=1;
}
else{
//cout << "removing edge: " << a[1] << " " << a[2] << "\n";
g[a[1]].erase(a[2]);
rem[a[1]]=1;
}
}
fill(vis,vis+n,0);
pq.insert({0,0,-1});
vis[0]=1;
while(!pq.empty()){
array<int,3> a = *(pq.begin());
pq.erase(pq.begin());
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.insert({p.second+a[0],p.first,a[1]});
}
}
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... |