이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rail.h"
#include <bits/stdc++.h>
using namespace std;
const int maxN = 5e3 + 20;
int distX[maxN];
int distY[maxN];
int distZ[maxN];
void findLocation(int N, int first, int location[], int stype[]) {
for (int i = 0; i < N; i++) {
location[i] = -1;
stype[i] = -1;
}
int X = 0;
location[X] = first;
stype[X] = 1;
for (int i = 0; i < N; i++) {
if (i != X) {
distX[i] = getDistance(X, i);
}
}
int Y = 1;
for (int i = 0; i < N; i++) {
if (i != X && distX[i] < distX[Y]) {
Y = i;
}
}
location[Y] = location[X] + distX[Y];
stype[Y] = 2;
for (int i = 0; i < N; i++) {
if (i != Y) {
distY[i] = getDistance(Y, i);
}
}
for (int i = 0; i < N; i++) {
if (i == X || i == Y) {
continue;
}
if (distX[i] == distX[Y] + distY[i]) {
location[i] = location[Y] - distY[i];
stype[i] = 1;
}
if (distY[i] == distY[X] + distX[i]) {
location[i] = location[X] + distX[i];
stype[i] = 2;
}
}
}
# | 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... |