제출 #1020993

#제출 시각아이디문제언어결과실행 시간메모리
1020993Solikha콤보 (IOI18_combo)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; string guess_sequence(int N) { string s = "", t = "ABXY", tmp = ""; for(int i = 0; i < 4; i++){ if(press(s + t[i]) == 1){ s += t[i]; } } for(int i = 0; i < 4; i++){ if (t[i] != s[0]) tmp += t[i]; } while(press(s) != N){ for(int i = 0; i < 3; i++){ if(press(s + tmp[i]) == s.size() + 1){ s += tmp[i]; break; } } } return s; }

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

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:10:8: error: 'press' was not declared in this scope
   10 |     if(press(s + t[i]) == 1){
      |        ^~~~~
combo.cpp:17:9: error: 'press' was not declared in this scope
   17 |   while(press(s) != N){
      |         ^~~~~