이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <iostream>
#include <cassert>
using namespace std;
int q = 0;
int ask(string s) {
++q;
assert(q <= 8000);
//cout << "PRESS " << s << endl;
return press(s);
}
std::string guess_sequence(int N) {
string A[] = { "A", "B", "X", "Y" };
string S = "";
if (ask(A[0] + A[1])) {
if (ask(A[0])) {
S += A[0];
} else {
S += A[1];
swap(A[1],A[0]);
}
} else {
if (ask(A[2])) {
S += A[2];
swap(A[2],A[0]);
} else {
S += A[3];
swap(A[2],A[0]);
}
}
if (N == 1) return S;
for (int i = 1; i <= N-2; ++i) {
string a = S + A[3] + A[1];
string b = S + A[3] + A[2];
string c = S + A[3] + A[3];
string d = S + A[2];
int x = ask(a + b + c + d);
S += A[x-i+1];
}
if (ask(S + A[1]) == N) S += A[1];
else if (ask(S + A[2]) == N) S += A[2];
else S += A[3];
return S;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |