# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
401550 | tredsused70 | 콤보 (IOI18_combo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
string guess_sequence(int n)
{
string ans,help;
char st;
if(press("AX"))
{
if(press("A")==1)
ans="A";
else
ans="X";
}
else
{
if(press("B")==1)
ans="B";
else
ans="Y";
}
st=ans[0];
int t;
for(int i=1;i<n-1;i++)
{
if(st=='A')
{
help=ans+"BB"+ans+"BY"+ans+"BX"+ans+"Y";
t=press(help);
if(t==i+2)
ans+="B";
if(t==i+1)
ans+="Y";
if(t==i)
ans+="X";
}
if(st=='B')
{
help=ans+"AA"+ans+"AY"+ans+"AX"+ans+"Y";
t=press(help);
if(t==i+2)
ans+="A";
if(t==i+1)
ans+="Y";
if(t==i)
ans+="X";
}
if(st=='Y')
{
help=ans+"AA"+ans+"AB"+ans+"AX"+ans+"B";
t=press(help);
if(t==i+2)
ans+="A";
if(t==i+1)
ans+="B";
if(t==i)
ans+="X";
}
if(st=='X')
{
help=ans+"AA"+ans+"AB"+ans+"AY"+ans+"B";
t=press(help);
if(t==i+2)
ans+="A";
if(t==i+1)
ans+="B";
if(t==i)
ans+="Y";
}
help.clear();
}
help=ans+"B"+ans+"A";
if(press(help)==n)
{
if(press(ans+"B")==n)
ans+="B";
else
ans+="A";
}
else
{
if(press(ans+"X")==n)
ans+="X";
else
ans+="Y";
}
return ans;
}