답안 #75407

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
75407 2018-09-09T15:29:17 Z khalilmiri 콤보 (IOI18_combo) C++14
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
#include <string>
using namespace std;
vector<int> tab;
string guess_sequence(int N)
{   tab.push_back(0);
tab.push_back(1);
tab.push_back('X' - 'A');
tab.push_back('Y'- 'A');
    do{ string g="";
         for(int i=0;i<3;i++)
       {           
            char x= tab[i] + 'A';
            g=g+x;
            
            }
        if(press(g)==3)
        {
            return(g);
        }
        
    }while(next_permutation(tab.begin(),tab.end()));
}

Compilation message

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:17:12: error: 'press' was not declared in this scope
   17 |         if(press(g)==3)
      |            ^~~~~
combo.cpp:23:1: warning: control reaches end of non-void function [-Wreturn-type]
   23 | }
      | ^