Submission #373976

#TimeUsernameProblemLanguageResultExecution timeMemory
373976ritul_kr_singhLost in the cycle (IOI19_cycle)C++17
33 / 100
1 ms364 KiB
//#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==1) return;
    bool inTrue = jump(n/2);
    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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...