# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
793112 | Ronin13 | 철로 (IOI14_rail) | C++17 | 55 ms | 4356 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rail.h"
#include <bits/stdc++.h>
#define ll long long
#define ull unsigned ll
#define f first
#define s second
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pb push_back
#define epb emplace_back
using namespace std;
const int nmax = 2000000;
int val[nmax];
void findLocation(int N, int first, int location[], int stype[])
{
int n = N;
array<int, 2> a[n];
for(int i = 0; i < n; i++){
a[i][0] =getDistance(0, i);
a[i][1] = i;
}
sort(a, a + n);
int l = 0, r = a[1][1];
stype[r] = 2;
stype[l] = 1;
//cout << r;
location[r] = first + a[1][0];
location[0] = first;
val[first + a[1][0]] = 2;
val[first] = 1;
for(int i= 2; i < n; i++){
//
int ind = a[i][1];
int d1 = getDistance(l, ind);
int d2 = getDistance(r, ind);
//cout << d1 << ' ' << d2 << "\n";
//cout << location[r] << "\n";
int p = location[l] + location[r] + d1 - d2;
p /= 2;
if(val[p] == 0){
if(p < first) stype[ind] = 1;
else stype[ind] = 2;
}
else
stype[ind] = 3 - val[p];
if(stype[ind] == 2){
location[ind] = location[l] + d1;
val[location[ind]] = stype[ind];
if(location[ind] > location[r]) r = ind;
}
else{
location[ind] = location[r] - d2;
val[location[ind]] = stype[ind];
if(location[ind] < location[l]) l = ind;
}
}
}
컴파일 시 표준 에러 (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... |