# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
884512 | Trisanu_Das | 사이버랜드 (APIO23_cyberland) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cyberland.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const double INF = 1e18;
double solve(int N, int M, int K, int H, vector<int> x, vector<int> y, vector<int> c, vector<int> arr) {
vector<double> dist(N, INF);
vector<vector<pair<int,int>>> adj(N);
for (int i = 0; i < M; ++i) {
adj[x[i]].push_back({y[i], c[i]});
adj[y[i]].push_back({x[i], c[i]});
}
priority_queue<pair<double,int>, vector<pair<double,int>>, greater<pair<double,int>>> pq;
arr[0] = 0;
pq.push({0, H});
while(!pq.empty()) {
int cur = pq.top().second;
double d = pq.top().first;
pq.pop();
if (dist[cur] < d) continue;
dist[cur] = d;
if (arr[cur] == 0) return d;
for (auto [nxt, cost] : adj[cur]) {
if (dist[nxt] > d + cost) {
dist[nxt] = d + cost;
pq.push({dist[nxt], nxt});
}
}
}o
return -1;
}