제출 #206463

#제출 시각아이디문제언어결과실행 시간메모리
206463vardan__02Combo (IOI18_combo)C++14
컴파일 에러
0 ms0 KiB
#include <algorithm>
#include <iostream>
#include <fstream>
#include <cstring>
#include <string>
#include <vector>
#include <cstdio>
#include <queue>
#include <deque>
#include <stack>
#include <list>
#include <set>
#include <map>
using namespace std;
typedef long long ll;
const long long N = 200005;
const long long inf = 1e18;
#define MP make_pair
#define PB push_back
string guess_sequence(int N)
{
    string ans="";
    string ban="ABXY";
    int x;
    while(ans.size()!=n)
    {
        for(int i=0;i<=3;i++)
        {
            x = press(ans+ban[i]);
            if(x==ans.size()+1)
            {
                ans+=ban[i];
                break;
            }
        }
    }
    return ans;
}

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

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:25:23: error: 'n' was not declared in this scope
   25 |     while(ans.size()!=n)
      |                       ^
combo.cpp:29:17: error: 'press' was not declared in this scope
   29 |             x = press(ans+ban[i]);
      |                 ^~~~~
combo.cpp:30:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   30 |             if(x==ans.size()+1)
      |                ~^~~~~~~~~~~~~~