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