이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cycle.h"
#include <bits/stdc++.h>
using namespace std;
int n;
bool Jump(int x) { return jump((x % n + n) % n); }
void escape(int _n) {
n = _n;
if (n == 2) { Jump(1); return; }
bool lst = Jump(0);
if (!lst) lst = Jump(n/2);
for (int step = (1 << __lg(n-1)); step >= 1; step >>= 1) {
if (lst) {
lst = Jump(-step);
}
else {
lst = Jump(step);
}
}
if (lst) lst = Jump(n/2);
else lst = Jump(n/2 + 1);
if (!lst) lst = Jump(-1);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |