이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
string guess_sequence(int N) {
vector<char> ch = {'A', 'B', 'X', 'Y'};
int x = 0;
string s;
if (press("AB") >= 1) x = press("A") != 1;
else x = 2 + (press("X") < 1);
s += ch[x];
ch.erase(ch.begin() + x);
if (N == 1) return s;
for (int i = 1; i < N - 1; ++i) {
x = press(s + ch[0] + ch[0] + s + ch[0] + ch[1] + s + ch[0] + ch[2] + s + ch[1]);
if (x == i + 2) s += ch[0];
else if (x == i + 1) s += ch[1];
else s += ch[2];
}
if (press(s + ch[0] + s + ch[1]) == N) {
if (press(s + ch[0]) == N) s += ch[0];
else s += ch[1];
} else {
s += ch[2];
}
return s;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |