# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
441547 | impri | 콤보 (IOI18_combo) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
std::string guess_sequence(int N) {
char val[4]={'A','B','X','Y'};
std::string res="U";
std::string t="U";
int first=-1;
t="AB";
if(guess(t)){
t="A";
if(guess(t)){
res[0]='A';
first=0;
}
else{
res[0]='B';
first=1;
}
}
else{
t="X";
if(guess(t)){
res[0]='X';
first=2;
}
else{
res[0]='Y';
first=3;
}
}
if(N==1)return res;
for(int i=1;i<N-1;i++){
t=res;
for(int j=1;j<=3;j++)
{t+=val[(first+1)%4];t+=val[(first+j)%4];t+=res;}
t+=val[(first+2)%4];
int g=press(t);
if(g==i+2)
res+=val[(first+1)%4];
else if(g==i+1)
res+=val[(first+2)%4];
else
res+=val[(first+3)%4];
}
if(press(res+val[(first+1)%4])==N)
res+=val[(first+1)%4];
else if(press(res+val[(first+2)%4])==N)
res+=val[(first+2)%4];
else
res+=val[(first+3)%4];
return res;
}