Submission #206463

#TimeUsernameProblemLanguageResultExecution timeMemory
206463vardan__02Combo (IOI18_combo)C++14
Compilation error
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; }

Compilation message (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)
      |                ~^~~~~~~~~~~~~~