| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 146551 | tjd229 | Lost in the cycle (IOI19_cycle) | C++14 | 2 ms | 380 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"
void escape(int n) {
int half = n >> 1;
int prev = 0;
if (jump(0)) {
int l = 1, r = half;
int to0 = -1;
while (l <= r) {
int m = (l + r) >> 1;
if (jump((n - prev + m) % n)) {
to0 = m;
l = m + 1;
}
else r = m - 1;
prev = m;
}
jump((n-prev+to0)%n);
}
else {
int l = 1, r = half;
int toM = 1;
while (l <= r) {
int m = (l + r) >> 1;
if (jump((n - prev + m) % n)) r = m - 1;
else {
toM = m + 1;
l = m + 1;
}
prev = m;
}
jump((n - prev + toM+half) % 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... | ||||
