이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int press(string p);
#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
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |