# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
166606 | abil | Evacuation plan (IZhO18_plan) | C++14 | 4097 ms | 34888 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fr first
#define sc second
#define pb push_back
#define mk make_pair
#define all(s) s.begin(),s.end()
//#define int long long
using namespace std;
const int N = (1e6 + 12);
const int mod = (1e9 + 7);
const int INF = (0x3f3f3f3f);
vector<pair<int,int >> g[N];
int dist[N];
main()
{
int n, k, m, v, u, w;
cin >> n >> m;
for(int i = 1;i <= m; i++){
scanf("%d%d%d", &v, &u, &w);
g[v].pb({u, w});
g[u].pb({v, w});
}
memset(dist,0x3f3f3f3f,sizeof(dist));
cin >> k;
priority_queue<pair<int,int > > q;
for(int i = 1;i <= k; i++){
scanf("%d", &v);
dist[v] = 0;
q.push({0, v});
}
while(!q.empty()){
auto x = q.top();
q.pop();
for(auto to : g[x.sc]){
if(dist[to.fr] >= dist[x.sc] + to.sc){
q.push({dist[x.sc] + to.sc, to.fr});
dist[to.fr] = dist[x.sc] + to.sc;
}
}
}
int que;
cin >> que;
while(que--){
scanf("%d%d", &v, &u);
printf("%d\n", min(dist[v], dist[u]));
}
}
/*
9 12
1 9 4
1 2 5
2 3 7
2 4 3
4 3 6
3 6 4
8 7 10
6 7 5
5 8 1
9 5 7
5 4 12
6 8 2
2
4 7
5
1 6
5 3
4 8
5 8
1 5
*/
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |