Submission #490872

# Submission time Handle Problem Language Result Execution time Memory
490872 2021-11-29T14:56:40 Z niloyroot Lost in the cycle (IOI19_cycle) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vi = vector<ll>;
using pl = pair<ll,ll>;
#define pb push_back
#define form(m,it) for(auto it=m.begin(); it!=m.end(); it++)
#define forp(i,a,b) for(ll i=a; i<=b; i++)
#define forn(i,a,b) for(ll i=a; i>=b; i--)
#define newl '\n'
#define ff first
#define ss second
const ll mod = 1000000007;

void escape(int n){
    ll len=1;
    while(len<n){
        len*=2;
    }
    len/=2;
    bool g=1;
    while(len>=1){
        if(g){
            g=jump(len);
        } else {
            g=jump(n-len);
        }
        len/=2;
    }
    jump(1);
    if(jump(n-1)){
        return;
    } else {
        jump(n-1);
    }
}

Compilation message

cycle.cpp: In function 'void escape(int)':
cycle.cpp:24:15: error: 'jump' was not declared in this scope
   24 |             g=jump(len);
      |               ^~~~
cycle.cpp:26:15: error: 'jump' was not declared in this scope
   26 |             g=jump(n-len);
      |               ^~~~
cycle.cpp:30:5: error: 'jump' was not declared in this scope
   30 |     jump(1);
      |     ^~~~