# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1014443 | rayan_bd | Combo (IOI18_combo) | C++17 | 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 <bits/stdc++.h>
#include "combo.h"
using namespace std;
string guess_sequence(int N){
string p="";
vector<string> ch;
if(press("AB")>0){
if(press("A")==1) p="A",ch={"B","X","Y"};
else p="B",ch={"A","X","Y"};
}else{
if(press("X")==1) p="X",ch={"A","B","X"};
else p="Y",ch={"A","B","X"};;
}
if(N==1) return p;
for(ll i=0;i<N-2;++i){
string nstr=p+ch[0]+ch[0]+p+ch[0]+ch[1]+p+ch[0]+ch[2]+p+ch[1];
ll k=press(nstr);
if(k==p.size()+1){
p+=ch[1];
}else if(k==p.size()+2){
p+=to_string(p[0]);
}else{
p+=ch[2]
}
}
if(press(p+ch[0]+p+ch[1])==n){
if(press(p+ch[0])==n) return p+ch[0];
else return p+ch[1];
}else{
return p+ch[2];
}
}