# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1007218 | christinelynn | 콤보 (IOI18_combo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <string>
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
string guess_sequence(int N)
{
string ans;
int val=press("AB"), find;
if(val>0)
{
int cek=press("A");
if(cek==0)
{
ans+="B";
find=1;
}
else
{
ans+="A";
find=0;
}
}
else
{
int cek=press("X");
if(cek==0)
{
ans+="Y";
find=3;
}
else
{
ans+="X";
find=2;
}
}
else if(find==1)
{
for(int i=2; i<N; i++)
{
string que=ans;
que=que+ans+"YY";
que=que+ans+"YX";
que=que+ans+"YA";
que=que+ans+"X";
val=press(que);
if(val==i)ans+="X";
else if(val==i-1)ans+="A";
else ans+="Y";
}
string que;
que=ans+"A";
if(val==N)return que;
que=ans+"X";
if(val==N)return que;
else return ans+"Y";
}
else if(find==2)
{
for(int i=2; i<N; i++)
{
string que=ans;
que=que+ans+"YY";
que=que+ans+"YB";
que=que+ans+"YA";
que=que+ans+"B";
val=press(que);
if(val==i)ans+="B";
else if(val==i-1)ans+="A";
else ans+="Y";
}
string que;
que=ans+"A";
if(val==N)return que;
que=ans+"B";
if(val==N)return que;
else return ans+"Y";
}
else if(find==3)
{
for(int i=2; i<N; i++)
{
string que=ans;
que=que+ans+"XX";
que=que+ans+"XB";
que=que+ans+"XA";
que=que+ans+"B";
val=press(que);
if(val==i)ans+="B";
else if(val==i-1)ans+="A";
else ans+="X";
}
string que;
que=ans+"A";
if(val==N)return que;
que=ans+"B";
if(val==N)return que;
else return ans+"X";
}
}