# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
163384 | davitmarg | Rail (IOI14_rail) | C++17 | 88 ms | 632 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.
/*DavitMarg*/
#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <string>
#include <cstring>
#include <map>
#include <set>
#include <queue>
#include <iomanip>
#include <bitset>
#include <stack>
#include <cassert>
#include <iterator>
#include <fstream>
#define mod 1000000007ll
#define LL long long
#define LD long double
#define MP make_pair
#define PB push_back
#define all(v) v.begin(), v.end()
using namespace std;
#ifndef death
#include "rail.h"
#endif
#ifdef death
int getDistance(int a, int b)
{
cout << a << " : " << b << endl;
cin >> a;
return a;
}
#endif
void findLocation(int n, int POS, int location[], int stype[])
{
vector<pair<int, int>> x;
vector<pair<int, int>> R, L;
for (int i = 0; i < n; i++)
{
int d = getDistance(0, i);
x.PB(MP(i, d));
}
sort(all(x));
R.PB(x[0]);
for (int i = 1; i < n; i++)
{
int d = getDistance(R.back().first, x[i].first);
if (d == x[i].second + R.back().second + 1)
R.PB(x[i]);
else
L.PB(x[i]);
}
for (int i = 0; i < R.size(); i++)
location[R[i].first] = POS + R[i].second;
for (int i = 0; i < L.size(); i++)
{
int d = R[i].second;
location[L[i].first] = POS - (L[i].second - d - d - 1);
}
}
#ifdef death
int main()
{
return 0;
}
#endif
/*
*/
Compilation message (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... |