This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "rail.h"
void findLocation(int n, int first, int location[], int stype[])
{
int mn = 1;
for (int i = 1; i < n; ++i)
{
if (getDistance(0, i) < getDistance(0, mn))
mn = i;
}
location[0] = first;
stype[0] = 1;
location[mn] = first + getDistance(0, mn);
stype[mn] = 2;
for (int i = 1; i < n; ++i)
{
if (i == mn) continue;
if (getDistance(0, mn) + getDistance(mn, i) == getDistance(0, i))
{
stype[i] = 1;
location[i] = location[mn] - getDistance(mn, i);
}
else
{
stype[i] = 2;
location[i] = first + getDistance(0, 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... |