# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
396866 | bigg | 철로 (IOI14_rail) | C++14 | 95 ms | 34244 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rail.h"
#include<bits/stdc++.h>
using namespace std;
const int MAXN = 5100;
int dist[MAXN][MAXN];
int getdistance(int i, int j){
return getDistance(i,j);
}
void findLocation(int n, int first, int location[], int stype[])
{
location[0] = first, stype[0] = 1;
if(n == 1) return;
int fr, auxfr = 1e9 + 10;
for(int i = 1; i < n; i++){
dist[0][i] = dist[i][0] = getdistance(0,i);
if(dist[i][0] < auxfr) fr = i, auxfr = dist[i][0];
}
for(int i = 1; i < n; i++){
if(i == fr){
location[i] = first + dist[0][i];
stype[i] = 2;
}else{
dist[i][fr] = dist[fr][i] = getdistance(i, fr);
if(dist[i][fr] == dist[0][i] - auxfr){
location[i] = first - (dist[0][i] - 2*auxfr);
stype[i] = 1;
}else{
location[i] = first + dist[0][i];
stype[i] = 2;
}
}
}
return;
}
컴파일 시 표준 에러 (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... |