이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "rail.h"
using namespace std;
int distFrom0[20000];
int distFromMin[20000];
void findLocation(int n, int first, int location[], int sType[]) {
location[0] = first;
sType[0] = 1;
int minDist = 1000000007;
int minIndex = -1;
for (int i = 1; i < n; i++)
{
distFrom0[i] = getDistance(0, i);
if (distFrom0[i] < minDist)
{
minDist = distFrom0[i];
minIndex = i;
}
}
location[minIndex] = distFrom0[minIndex] + first;
sType[minIndex] = 2;
for (int i = 0; i < n; i++)
{
if (i != 0 and i != minIndex)
{
distFromMin[i] = getDistance(minIndex, i);
if (distFromMin[i] > distFrom0[i])
{
sType[i] = 2;
location[i] = first + distFrom0[i];
}
else
{
sType[i] = 1;
location[i] = location[minIndex] - distFromMin[i];
}
}
}
}
# | 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... |