제출 #520266

#제출 시각아이디문제언어결과실행 시간메모리
520266chinglamLost in the cycle (IOI19_cycle)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
 
using namespace std;
 
#define vt vector
#define INF 0x3f3f3f3f
#define pb push_back
#define all(x) (x).begin(),(x).end()
#define rep(i,x) for(int (i) = 0;(i) < (x); (i)++)
#define MOD 1000000007
 
typedef vt<int> vi;
typedef long long ll;
typedef long double ld;
typedef pair<int,int> pii;
 
 
 
 
 
void escape(int n){
    int cur = 1;
    while(cur<n)cur*=2;
    cur>>=1;
    int bcadd = 0;
    while(cur!=0){
        if(!jump(cur+bcadd)){
            bcadd = n-cur;
        }else{
            bcadd = 0;
        }
        cur/=2;
    }
    if(bcadd!=0)jump(bcadd);
}

컴파일 시 표준 에러 (stderr) 메시지

cycle.cpp: In function 'void escape(int)':
cycle.cpp:27:13: error: 'jump' was not declared in this scope
   27 |         if(!jump(cur+bcadd)){
      |             ^~~~
cycle.cpp:34:17: error: 'jump' was not declared in this scope
   34 |     if(bcadd!=0)jump(bcadd);
      |                 ^~~~