답안 #373979

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
373979 2021-03-06T10:52:15 Z ritul_kr_singh Lost in the cycle (IOI19_cycle) C++17
0 / 100
0 ms 364 KB
//#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(n);
      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);
    }
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 364 KB Invalid argument.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 364 KB Invalid argument.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 364 KB Invalid argument.
2 Halted 0 ms 0 KB -