Submission #497366

#TimeUsernameProblemLanguageResultExecution timeMemory
497366Ai7081Combo (IOI18_combo)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; int press(string p) string guess_sequence(int n) { int in, t; string out, s, c; in = press("AB"); if (in) { in = press("A"); in ? out="A" : out="B"; } else { in = press("X"); in ? out="X" : out="Y"; } string tmp = "ABXY"; for (int i=0; i<4; i++) if (tmp[i]!=out[i]) c+=tmp[i]; for (t=1; t<n; t++) { s = out; s += c[0]; for (int i=0; i<3; i++) { s += out; s += c[1]; s += c[i]; } in = press(s); if (in == t) out+=c[2]; else if (in == t+1) out+=c[0]; else if (in == t+2) out+=c[1]; } return out; }

Compilation message (stderr)

combo.cpp:6:1: error: expected initializer before 'string'
    6 | string guess_sequence(int n) {
      | ^~~~~~