# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
984084 | Rafiullah | 사이버랜드 (APIO23_cyberland) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cyberland.h"
#include <bits/stdc++.h>
using namespace std;
#define int long long
double solve(int N, int M, int K, int H, std::vector<int> x, std::vector<int> y, std::vector<int> c, std::vector<int> arr) {
int n ,m , k,h;cin>>n>>m>>k>>h;
map<int,vector<int>> graph;
map<pair<int,int>,int> weight;
int A[n];
int dist[n];
for(int i = 0 ;i <n ;i ++){
dist[i] = 1e9;
cin>>A[i];
}
for(int i = 0 ;i<m ;i ++){
int a ,b,c;cin>>a>>b>>c;
weight[{min(a,b),max(a,b)}] = c;
graph[a].push_back(b);
graph[b].push_back(a);
}
priority_queue<pair<int,int>> pq;
dist[0]=0;
pq.push({0,0});
while(pq.size()>0){
int node = pq.top().second;
pq.pop();
// cout<<graph[node].size()<<endl;
for(int child:graph[node]){
int W = weight[{min(node,child),max(node,child)}];
// cout<<node<<" "<<child<<" "<<W<<endl;
if(dist[node]+W<dist[child]){
dist[child] = dist[node]+W;
pq.push({-dist[child],child});
}
}
}
if(dist[h] == 1e9)dist[h] = -1;
return dist[h];
}