# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
986837 | Tsagana | 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"
#include<bits/stdc++.h>
#define all(x) x.begin(), x.end()
#define pq priority_queue
#define lb lower_bound
#define ub upper_bound
#define pb push_back
#define eb emplace_back
#define F first
#define S second
using namespace std;
string guess_sequence(int N) {
string S;
string o;
if (press("A")) {S = "A"; o = "BXY";}
if (press("B")) {S = "B"; o = "AXY";}
if (press("X")) {S = "X"; o = "ABY";}
if (press("Y")) {S = "Y"; o = "ABX";}
for (int i = 1; i < N-1; i++) {
string tmp = S + o[0] + o[0] + S + o[0] + o[1] + S + o[0] + o[2] + S + o[1];
int ct = press(tmp);
if (ct == i+2) S += opt[0];
else if (ct == i+1) S += opt[1];
else S += opt[2];
}
if (press(S + o[0]) == N) S += opt[0];
if (press(S + o[1]) == N) S += opt[1];
if (press(S + o[2]) == N) S += opt[2];
return S;
}