# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1021611 | MarwenElarbi | 철로 (IOI14_rail) | C++17 | 46 ms | 1104 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "rail.h"
using namespace std;
#define ll long long
#define fi first
#define se second
#define pb push_back
void findLocation(int N, int first, int location[], int stype[])
{
vector<pair<int,int>> a;
map<int,int> mp;
mp[first]=0;
location[0]=first;
stype[0]=1;
for (int i = 1; i < N; ++i)
{
a.pb({getDistance(0,i),i});
}
sort(a.begin(),a.end());
mp[a[0].fi+first]=a[0].se;
location[a[0].se]=a[0].fi+first;
stype[a[0].se]=2;
int l,r;
l=0;
r=a[0].se;
for (int i = 1; i < a.size(); ++i)
{
int cura=getDistance(l,a[i].se);
int curb=getDistance(r,a[i].se);
int m=(cura-curb+location[l]+location[r])/2;
int test=(mp.find(m)==mp.end()?(m>first ? 1 : 2):stype[mp[m]]);
if(test^2){
stype[a[i].se]=2;
location[a[i].se]=location[l]+cura;
if(location[a[i].se]>location[r])
r=a[i].se;
}else{
stype[a[i].se]=1;
location[a[i].se]=location[r]-curb;
if(location[a[i].se]<location[l])
l=a[i].se;
}
mp[location[a[i].se]]=a[i].se;
}
return;
}
컴파일 시 표준 에러 (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... |