이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "combo.h"
using namespace std;
int i,j,n,m;
string s,x;
char a[4];
std::string guess_sequence(int N)
{
n=N;
x="";
if (press("AB")>=1)
{
if (press("A")==1)
{
a[0]='B';
a[1]='X';
a[2]='Y';
x="A";
}
else
{
a[0]='A';
a[1]='X';
a[2]='Y';
x="B";
}
}
else if (press("X")==1)
{
a[0]='B';
a[1]='A';
a[2]='Y';
x="X";
}
else
{
a[0]='B';
a[1]='X';
a[2]='A';
x="Y";
}
i=1;
while (i+1<n)
{
s=x+a[0]+a[0]+x+a[0]+a[1]+x+a[0]+a[2]+x+a[1];
m=press(s);
if (m>i+1)
{
x+=a[0];
}
else if (m>i)
{
x+=a[1];
}
else
{
x+=a[2];
}
i++;
}
while (i<n)
{
if (press(x+a[0])>i)
{
x+=a[0];
}
else if (press(x+a[1])>i)
{
x+=a[1];
}
else
{
x+=a[2];
}
i++;
}
return x;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |