제출 #759423

#제출 시각아이디문제언어결과실행 시간메모리
759423Dan4LifeUnscrambling a Messy Bug (IOI16_messy)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> //#include "messy.h" using namespace std; vector<int> restore_permutation(int n, int w, int r) { string s(n,'0'), ss(n,'0'); for(int i = 0; i < n; i++) s[i]='1',add_element(s); compile_set(); vector<int> p(n,0); iota(begin(p),end(p),0); for(int i = 0; i < n; i++){ ss[i]='1'; for(int j = 0; j < n; j++){ swap(ss[i],ss[j]); if(check_element(ss)) p[i]=j; swap(ss[i],ss[j]); } } return p; }

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

messy.cpp: In function 'std::vector<int> restore_permutation(int, int, int)':
messy.cpp:7:41: error: 'add_element' was not declared in this scope
    7 |     for(int i = 0; i < n; i++) s[i]='1',add_element(s);
      |                                         ^~~~~~~~~~~
messy.cpp:8:5: error: 'compile_set' was not declared in this scope
    8 |     compile_set();
      |     ^~~~~~~~~~~
messy.cpp:14:16: error: 'check_element' was not declared in this scope
   14 |             if(check_element(ss)) p[i]=j;
      |                ^~~~~~~~~~~~~