# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
503661 | doowey | 철로 (IOI14_rail) | C++14 | 289 ms | 628 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "rail.h"
using namespace std;
typedef pair<int, int> pii;
#define fi first
#define se second
#define mp make_pair
const int N = 5010;
int d[N];
bool calc[N];
void findLocation(int n, int first, int location[], int stype[]){
vector<pii> ord;
for(int i = 1; i < n; i ++ ){
d[i] = getDistance(0, i);
ord.push_back(mp(d[i], i));
}
sort(ord.begin(), ord.end());
location[0] = first;
stype[0] = 0;
calc[0]=true;
int ii = 0;
int jj;
int lef, rig;
int askl, askr;
int id;
int pos;
int dist;
bool valid;
int en, st;
int check;
int pick;
for(int i = 0 ; i < ord.size(); i ++ ){
if(i == 0){
location[ord[i].se] = first + ord[i].fi;
stype[ord[i].se] = 1;
calc[ord[i].se] = true;
lef = first;
rig = location[ord[i].se];
jj = ord[i].se;
}
else{
id = ord[i].se;
askl = getDistance(ii, id);
askr = getDistance(jj, id);
pos = lef + askl;
pick = -1;
for(int j = 0 ; j < n; j ++ ){
if(!calc[j]) continue;
if(location[j] <= min(pos, rig) && stype[j] == 0){
check = (rig - location[j]) + (pos - location[j]);
if(check == askr){
pick = 0;
}
}
}
pos = rig - askr;
for(int j = 0 ; j < n; j ++ ){
if(!calc[j]) continue;
if(location[j] >= max(pos, lef) && stype[j] == 1){
check = (location[j] - lef) + (location[j] - pos);
if(check == askl){
pick = 1;
}
}
}
if(pick == -1){
pos = lef + askl;
if(d[id] == pos - location[0]){
pick = 0;
}
else{
pick = 1;
}
}
if(pick == 0){
location[id] = lef + askl;
stype[id] = 1;
if(location[id] > rig){
rig = location[id];
jj = id;
}
}
else{
location[id] = rig - askr;
stype[id] = 0;
if(location[id] < lef){
lef = location[id];
ii = id;
}
}
calc[id] = true;
}
}
for(int i = 0 ; i < n; i ++ ){
stype[i] ++ ;
}
}
컴파일 시 표준 에러 (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... |