# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
503944 | TranGiaHuy1508 | 콤보 (IOI18_combo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
int press(string p){
cout << p << "\n";
fflush(stdout);
int r; cin >> r; return r;
}
#endif
string ch = "ABXY";
string guess_sequence(int n){
string prefix = "";
string other;
if (press("AABB")){
if (press("AA")){
prefix = "A";
other = "BXY";
}
else{
prefix = "B";
other = "AXY";
}
}
else{
if (press("XX")){
prefix = "X";
other = "ABY";
}
else{
prefix = "Y";
other = "ABX";
}
}
for (int i=2; i<=n; i++){
string c = prefix + other[0] + prefix + other[1];
if (press(c) > (int)prefix.length()){
string d = prefix + other[0];
if (press(d) > (int)prefix.length()){
prefix += other[0];
}
else{
prefix += other[1];
}
}
else{
prefix += other[2];
}
}
return prefix;
}
#ifdef LOCAL
int main(){
int n; cin >> n;
cout << guess_sequence(n);
}
#endif