Submission #1006925

#TimeUsernameProblemLanguageResultExecution timeMemory
1006925andecaandeciCombo (IOI18_combo)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; string guess_sequence(int n) { vector<char> c = {'A', 'B', 'X', 'Y'}; string s; if (n == 1) { s = "."; for (auto &i : c) { s[0] = i; if (press(s)) { break; } } } else if (n == 2) { s = ".."; for (auto &i : c) { for (auto &j : c) { s[0] = i; s[1] = j; if (press(s)) { goto done; } } } } else { s = "..."; for (auto &i : c) { for (auto &j : c) { for (auto &k : c) { s[0] = i; s[1] = j; s[2] = k; if (press(s)) { goto done; } } } } } done: return s; }

Compilation message (stderr)

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:13:11: error: 'press' was not declared in this scope
   13 |       if (press(s)) {
      |           ^~~~~
combo.cpp:23:13: error: 'press' was not declared in this scope
   23 |         if (press(s)) {
      |             ^~~~~
combo.cpp:36:15: error: 'press' was not declared in this scope
   36 |           if (press(s)) {
      |               ^~~~~