이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "rail.h"
const int MAX = 2e6 + 15;
const int INF = 0x3f3f3f3f;
int dist[MAX][2];
void findLocation(int n, int first, int location[], int stype[]){
int mn = INF, mnId = 0;
for(int i = 1; i < n; i++){
int curDist = getDistance(0, i);
dist[i][0] = curDist;
if(dist[i][0] < mn)
mn = dist[i][0], mnId = i;
}
for(int i = 1; i < n; i++){
int curDist = getDistance(mnId, i);
dist[i][1] = curDist;
}
location[0] = first;
stype[0] = 1;
location[mnId] = first + dist[mnId][0];
stype[mnId] = 2;
for(int i = 1; i < n; i++){
if(i == mnId) continue;
if(dist[i][1] < dist[i][0]){
stype[i] = 1;
location[i] = location[mnId] - dist[i][1];
}else{
stype[i] = 2;
location[i] = location[0] + dist[i][0];
}
}
}
# | 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... |