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;
bool jump(int x);
void escape(int n) {
bool works = jump(0);
while (!works) works = jump(n/2);
int lo = 0;
int hi = n/2;
int cur_dist = 0;
while (lo < hi) {
int m = (lo + hi + 1)/2;
if (jump((m - cur_dist + n) % n)) {
lo = m;
} else hi = m-1;
cur_dist = m;
}
jump((lo - cur_dist + n) % n);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |