# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
17388 | erdemkiraz | Rail (IOI14_rail) | C++98 | 117 ms | 988 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define type(x) __typeof((x).begin())
#define foreach(it, x) for(type(x) it = (x).begin(); it != (x).end(); it++)
typedef long long ll;
typedef pair < int, int > ii;
const int inf = 1e9 + 333;
const ll linf = 1e18 + inf;
#include "rail.h"
const int N = 5000 + 5;
ii a[N];
void findLocation(int n, int first, int location[], int stype[]) {
for(int i = 1; i < n; i++) {
a[i].first = getDistance(0, i);
a[i].second = i;
}
sort(a + 1, a + n);
int second = a[1].second;
location[0] = first;
stype[0] = 1;
location[second] = first + a[1].first;
stype[second] = 2;
int L = 0, R = second;
# | 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... |