Submission #373968

#TimeUsernameProblemLanguageResultExecution timeMemory
373968ritul_kr_singhLost in the cycle (IOI19_cycle)C++17
0 / 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(!jump(n/2)) jump(n/2);
    for(int j=n/2; j; j/=2){
        while(true){
            bool ok = jump(j);
            if(!ok){
                jump(n-j);
                break;
            }
        }
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...