# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
961151 | raspy | Combo (IOI18_combo) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "combo.h"
using namespace std;
string guess_sequence(int N)
{
char a[5] = {'A', 'B', 'X', 'Y'};
string p = "";
for (int i = 0; i < 3; i++)
{
p[0] = a[i];
int odg = press(p);
if (odg == 1)
{
swap(a[i], a[3]);
break;
}
if (i == 3)
p[0] = a[3];
}
char zc = p[0];
string s = "";
s += zc;
for (int tr = 2; tr <= n; tr++)
{
p = s + a[0];
p = p + s+a[1]+a[0];
p = p + s+a[1]+a[2];
int odg = press(p);
if (odg == tr)
s += a[0];
else if (odg == tr+1)
s += a[1];
else
s += a[2];
}
return s;
}