Submission #228024

#TimeUsernameProblemLanguageResultExecution timeMemory
228024jzhLost in the cycle (IOI19_cycle)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
void escape (int n){
    int x = n, y;
    if (jump(0)){
        x = n/2;
    }
    else {
        x = n/2;
        x *= -1;
    }
    bool b;
    while (abs(x)>0){
        y = x;
        if (y<0)y+=n;
        y%=n;
        //cout<<x<<' '<<y<<'\n';
        if (jump(y)){
            x = abs(x) + x%2;
            //cout<<"True\n";
            b = true;
            x = x/2;
        }
        else {
            x = -1*abs(x);
            //cout<<"False\n";
            b = false;
            x = x/2 - abs(x)%2;
        }
        //cout<<ans<<'\n';
        //x = x/2 + x%2;
    }
    if (!b)jump(n-1);
}

Compilation message (stderr)

cycle.cpp: In function 'void escape(int)':
cycle.cpp:5:9: error: 'jump' was not declared in this scope
     if (jump(0)){
         ^~~~
cycle.cpp:5:9: note: suggested alternative: 'bcmp'
     if (jump(0)){
         ^~~~
         bcmp
cycle.cpp:18:13: error: 'jump' was not declared in this scope
         if (jump(y)){
             ^~~~
cycle.cpp:18:13: note: suggested alternative: 'bcmp'
         if (jump(y)){
             ^~~~
             bcmp
cycle.cpp:33:12: error: 'jump' was not declared in this scope
     if (!b)jump(n-1);
            ^~~~
cycle.cpp:33:12: note: suggested alternative: 'bcmp'
     if (!b)jump(n-1);
            ^~~~
            bcmp