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