# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
308539 | kylych03 | 악어의 지하 도시 (IOI11_crocodile) | C++14 | 1 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "crocodile.h"
#include <bits/stdc++.h>
//#include "grader.cpp"
using namespace std;
vector <pair <int, int > > g[1002];
int inf =1e9+7;
pair <int, int> a[100001];
int travel_plan(int N, int M, int R[][2], int L[], int K, int P[])
{
for(int i = 0; i <=N; i++){
a[i].first=inf;
a[i].second=inf;
}
deque <int >deq;
for(int i = 0 ; i < M ;i++){
g[R[i][0]].push_back(make_pair (R[i][1], L[i]) );
g[R[i][1]].push_back( make_pair (R[i][0], L[i]));
}
for(int i = 0; i < K; i++){
deq.push_back(P[i]);
a[P[i]] = make_pair (0,0);
}
while(!deq.empty()){
int v = deq.front();
deq.pop_front();
int len = a[v].second;
for(int i= 0 ; i< g[v].size() ; i++ ){
int to = g[v][i].first;
int dis = g[v][i].second;
if(a[to].second > len + dis){
a[to].second = len + dis;
if(a[to].first > a[to].second)
swap(a[to].first, a[to].second);
if(a[to].second!=inf)
deq.push_back(to);
}
}
}
return a[0].second;
}
/*
5 4 3
0 1 2
0 2 3
3 2 1
2 4 4
1 3 4
*/
컴파일 시 표준 에러 (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... |