# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
967062 | akacool445k | 사이버랜드 (APIO23_cyberland) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cyberland.h"
using namespace std;
// #define int long long
#define ff first
#define ss second
const int shrek = 1e5;
vector< vector<pair<int, int>>> adj(shrek);
double solve(int n, int m, int k, int h, vector<int> x, vector<int> y, vector<int> c, vector<int> arr) {
vector<int> dist (n);
for(int i = 0; i < n; i++) dist[i] = -1;
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<int, int>> q;
q.push({0, 0});
while(!q.empty()) {
double d = -q.top().ff;
int u = q.top().ss;
q.pop();
if(dist[p.ss] != -1) continue;
dist[u] = d;
for(auto x : adj[p.ss]) {
q.push({-(d + x.ss), x.ff});
}
}
double ans = dist[h];
return ans;
}