# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
73949 | Hoget157 | 철로 (IOI14_rail) | C++14 | 87 ms | 1052 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rail.h"
#include <bits/stdc++.h>
#define INF 1e+9
using namespace std;
typedef pair<int,int> P;
void findLocation(int n, int first, int location[], int stype[]){
location[0] = first;
stype[0] = 1;
if(n == 1) return;
if(n == 2){
int d = getDistance(0,1);
location[1] = first + d;
stype[1] = 2;
return;
}
int d0[5010] = {},d1[5010] = {},mi = INF,mii;
for(int i = 1;i < n;i++){
d0[i] = getDistance(0,i);
if(mi > d0[i]){
mi = d0[i];
mii = i;
}
}
for(int i = 0;i < n;i++){
if(mii != i) d1[i] = getDistance(mii,i);
}
for(int i = 1;i < n;i++){
if(i != mii && d0[i] > d1[i]){
stype[i] = 1;
location[i] = first - (d0[i] - 2 * d0[mii]);
}
else{
stype[i] = 2;
location[i] = first + d0[i];
}
}
//for(int i = 0;i < n;i++) cout << stype[i] << " " << location[i] << endl;
}
컴파일 시 표준 에러 (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... |