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 <iostream>
using namespace std;
string guess_sequence(int N)
{
int n = press("AB");char ar[3]={};string cr="",tcr;
if (n>0)
{
n = press("A");
if (n==1) {cr+='A';ar[0]='B';ar[1]='X';ar[2]='Y';}
else {cr+='B';ar[0]='A';ar[1]='X';ar[2]='Y';}
}
else
{
n = press("X");
if (n==1) {cr+='X';ar[0]='A';ar[1]='B';ar[2]='Y';}
else {cr+='Y';ar[0]='A';ar[1]='B';ar[2]='X';}
}
if (N==1) {return cr;}
for (int i=1;i<N-1;i++)
{
tcr=cr+ar[0];
for (int j=0;j<3;j++) {tcr+=cr+ar[1]+ar[j];}
n = press(tcr);
if (n==i) {cr+=ar[2];}
else if (n==i+1) {cr+=ar[0];}
else {cr+=ar[1];}
}
n = press(cr+ar[0]);
if (n==N) {return cr+ar[0];}
else
{
n = press(cr+ar[1]);
if (n==N) {return cr+ar[1];} else {return cr+ar[2];}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |