# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
882356 | pirhosig | Lost in the cycle (IOI19_cycle) | C++17 | 1 ms | 600 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>
#include "cycle.h"
using namespace std;
void escape(int n)
{
if (n == 2)
{
jump(1);
return;
}
if (!jump(1))
{
bool res = jump((n - 1) / 2);
// cerr << "F " << res << endl;
}
int low = 0;
int upp = n / 2;
int curr = 0;
while (low < upp)
{
int mid = (low + upp + 1) / 2;
int jval = (mid - curr + n) % n;
curr = mid;
// cerr << "M " << low << " " << upp << " " << mid << " " << jval << endl;
if (jump(jval)) low = mid;
else upp = mid - 1;
}
if (curr != low) jump(low - curr + n) % n;
// cerr << "S " << low << endl;
}
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... |