# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
762029 | HamletPetrosyan | 철로 (IOI14_rail) | C++17 | 43 ms | 492 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rail.h"
using namespace std;
#define ll long long
ll n;
ll z, h;
ll d0[5005];
ll dh[5005];
void findLocation(int N, int l0, int location[], int stype[])
{
n = N;
z = l0;
stype[0] = 1;
location[0] = z;
if(n == 1) return;
for(int i = 1; i < n; i++){
d0[i] = getDistance(0, i);
}
h = 1;
ll mn = d0[1];
for(int i = 2; i < n; i++){
if(mn > d0[i]){
h = i;
mn = d0[i];
}
}
location[h] = z + mn;
stype[h] = 2;
dh[h] = 0;
ll st = dh[0] = d0[h];
for(int i = 1; i < n; i++){
if(i == h) continue;
dh[i] = getDistance(h, i);
}
for(int i = 1; i < n; i++){
if(i == h) continue;
if(d0[i] <= dh[i]){
location[i] = z + d0[i];
stype[i] = 2;
}
else {
location[i] = location[h] - dh[i];
stype[i] = 1;
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |