# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
554190 | morasha3 | 콤보 (IOI18_combo) | C++17 | 24 ms | 612 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "combo.h"
using namespace std;
string guess_sequence(int N) {
string p = "AB";
int c=press(p);
string ans;
if(c==2)
{
ans+='A';
}
else if(c==1)
{
p='A';
c=press(p);
if(c)
ans+='A';
else ans+='B';
}
else
{
p='X';
c=press(p);
if(c)
ans+='X';
else ans+='Y';
}
if(N==1)return ans;
for(int i=1;i<N-1;i++)
{
if(ans[0]=='A')
{
string temp=ans;
temp+='B';
temp+=ans;
temp+="XB";
temp+=ans;
temp+="XY";
temp+=ans;
temp+="XX";
c=press(temp);
if(c==1+ans.size())
{
ans+='B';
}
else if(c==2+ans.size())
{
ans+='X';
}
else ans+='Y';
}
else if(ans[0]=='B')
{
string temp=ans;
temp+='A';
temp+=ans;
temp+="XA";
temp+=ans;
temp+="XY";
temp+=ans;
temp+="XX";
c=press(temp);
if(c==1+ans.size())
{
ans+='A';
}
else if(c==2+ans.size())
{
ans+='X';
}
else ans+='Y';
}
else if(ans[0]=='X')
{
string temp=ans;
temp+='B';
temp+=ans;
temp+="AB";
temp+=ans;
temp+="AY";
temp+=ans;
temp+="AA";
c=press(temp);
if(c==1+ans.size())
{
ans+='B';
}
else if(c==2+ans.size())
{
ans+='A';
}
else ans+='Y';
}
else
{
string temp=ans;
temp+='B';
temp+=ans;
temp+="XB";
temp+=ans;
temp+="XA";
temp+=ans;
temp+="XX";
c=press(temp);
if(c==1+ans.size())
{
ans+='B';
}
else if(c==2+ans.size())
{
ans+='X';
}
else ans+='A';
}
}
string temp=ans;
if(ans[0]=='A')
{
temp+='B';
c=press(temp);
if(c==N)
ans+='B';
else
{
temp[temp.size()-1]='X';
c=press(temp);
if(c==N)
ans+='X';
else ans+='Y';
}
}
else if(ans[0]=='B')
{
temp+='A';
c=press(temp);
if(c==N)
ans+='A';
else
{
temp[temp.size()-1]='X';
c=press(temp);
if(c==N)
ans+='X';
else ans+='Y';
}
}
else if(ans[0]=='X')
{
temp+='B';
c=press(temp);
if(c==N)
ans+='B';
else
{
temp[temp.size()-1]='A';
c=press(temp);
if(c==N)
ans+='A';
else ans+='Y';
}
}
else
{
temp+='B';
c=press(temp);
if(c==N)
ans+='B';
else
{
temp[temp.size()-1]='X';
c=press(temp);
if(c==N)
ans+='X';
else ans+='A';
}
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |