# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
551557 | AJ00 | 철로 (IOI14_rail) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <rail.h>
using namespace std;
void findLocation(int N, int first, int[] location, int[] stype){
int n = N;
location[0] = first;
stype[0] = 1;
if (n == 1){
return;
}
for (int i = 0; i < n; i++){
stype[i] = -1;
for (int j = i+1; j < n; j++){
dist[i][j] = getDistance(i,j);
dist[j][i] = dist[i][j];
}
}
stype[0] = 1;
for (int i = 0; i < n; i++){
for (int j = i+1; j < n; j++){
if (dist[0][i] == dist[0][j]+dist[i][j]){
location[j] = dist[0][j]+location[0];
location[i] = location[j]-dist[i][j];
stype[j] = 2;
stype[i] = 1;
}
else if (dist[0][j] == dist[0][i]+dist[i][j]){
location[i] = dist[0][i]+location[0];
location[j] = location[i]-dist[i][j];
stype[i] = 2;
stype[j] = 1;
}
}
}
for (int i = 0; i < n; i++){
if (stype[i] == -1){
location[i] = dist[0][i]+location[0];
stype[i] = 2;
}
}
return;
}