# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
296214 | dsjong | 철로 (IOI14_rail) | C++14 | 561 ms | 98680 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rail.h"
#include <bits/stdc++.h>
using namespace std;
#define pii pair<int, int>
#define F first
#define S second
int dist[5005][5005];
int INF=1e9;
int d(int x, int y){
if(dist[x][y]!=0) return dist[x][y];
return dist[x][y]=dist[y][x]=getDistance(x, y);
}
void findLocation(int N, int una, int location[], int stype[]){
stype[0]=1;
location[0]=una;
pii mini={1e9, -1};
for(int i=1;i<N;i++){
mini=min(mini, {d(0, i), i});
}
int x=mini.S;
location[x]=location[0]+mini.F;
stype[x]=2;
vector<pii>L, R;
for(int i=1;i<N;i++){
if(i!=x){
if(d(0, x)+d(x, i)==d(0, i)) L.push_back({d(0, i), i});
else R.push_back({d(0, i), i});
}
}
sort(L.begin(), L.end());
컴파일 시 표준 에러 (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... |