# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
333576 | nicholask | 콤보 (IOI18_combo) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
char c[4]={'A','B','X','Y'};
string guess_sequence(int n){
string ans="";
for (int i=1; i<=n; i++){
int fc;
if (i==1){
if (press("AB")){;
if (press("A")){
ans+='A';
fc=0;
} else {
ans+='B';
fc=1;
}
} else {
if (press("X")){
ans+='X';
fc=2;
} else {
ans+='Y';
fc=3;
}
}
continue;
}
if (i==n){
string q=ans;
q+=c[(fc+1)%4];
if (press(q)==n) ans+=c[(fc+1)%4];
else {
q.pop_back();
q+=c[(fc+2)%4];
if (press(q)==n) ans+=c[(fc+2)%4];
else ans+=c[(fc+3)%4];
}
continue;
}
string q="";
q+=ans;
q+=c[(fc+1)%4];
q+=c[(fc+1)%4];
q+=ans;
q+=c[(fc+1)%4];
q+=c[(fc+2)%4];
q+=ans;
q+=c[(fc+1)%4];
q+=c[(fc+3)%4];
q+=ans;
q+=c[(fc+2)%4];
int c=press(q);
if (c==ans.size()+2) ans+=c[(fc+1)%4];
else if (c==ans.size()+1) ans+=c[(fc+2)%4];
else ans+=c[(fc+3)%4];
}
return ans;
}