이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#pragma GCC optimize("Ofast,unroll-loops")
#include <bits/stdc++.h>
#include "cycle.h"
using namespace std;
#define sp << " " <<
#define nl << "\n"
void escape(int n){
if(n==2){
jump(1);
}else{
bool inTrue = jump(0);
for(int j=n/2; true; j=(j+1)/2){
bool ok;
if(inTrue) ok = jump(j);
else ok = jump(n-j);
// cout << j sp inTrue sp ok nl;
inTrue = ok;
if(j==1) break;
}
if(!inTrue) jump(n-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... |