이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"rail.h"
#include<bits/stdc++.h>
#ifndef EVAL
#include"grader.cpp"
#endif
using namespace std;
pair<int,int>a[5005];
void findLocation(int n,int first,int location[],int stype[]){
stype[0]=1,location[0]=first;
for(int i=1;i<n;i++)a[i]={getDistance(0,i),i};
sort(a+1,a+n);
int x=a[1].second;
location[x]=first+a[1].first;
stype[x]=2;
int tmp=a[1].first<<1;
for(int i=2;i<n;i++){
int y=a[i].second;
int d=getDistance(x,y);
if (d>a[i].first){
location[y]=first+a[i].first;
stype[y]=2;
}else{
location[y]=first-a[i].first+tmp;
stype[y]=1;
}
}
}
# | 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... |