| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 143840 | SpeedOfMagic | Lost in the cycle (IOI19_cycle) | C++17 | 2 ms | 376 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 "cycle.h"
int cur = 0; //current room = cur + p
int N;
bool goTo(int jumpAmountFromStart) {
int res = (N - cur + jumpAmountFromStart) % N;
cur = jumpAmountFromStart;
return jump(res);
}
void escape(int n) {
N = n;
int l = 0, r = n;
while (l < r) {
int mid = (l + r + 1) >> 1;
if (goTo(mid))
l = mid;
else
r = mid - 1;
}
goTo(l);
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
