이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
* author: tourist
* created:
**/
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "algo/debug.h"
#else
#define debug(...) 42
#endif
vector<string> alphabet = {"A", "B", "X", "Y"};
string guess_sequence(int n) {
string firs = "?", ans;
if (press("AB") >= 1) {
if (press("A") == 1) {
firs = "A";
} else {
firs = "B";
}
} else {
if (press("X") == 1) {
firs = "X";
} else {
firs = "Y";
}
}
ans += firs;
if (n == 1) {
return ans;
}
vector<int> possible;
for (int i = 0; i < 4; i++) {
if (alphabet[i] != firs) {
possible.push_back(i);
}
}
for (int i = 1; i < n - 1; i++) {
int x = press(ans + alphabet[possible[0]] + ans + alphabet[possible[1]] + alphabet[possible[0]] + ans + alphabet[possible[1]] + alphabet[possible[1]] + ans + alphabet[possible[1]] + alphabet[possible[2]]);
if (x == i) {
ans += alphabet[possible[2]];
} else if (x == i + 1) {
ans += alphabet[possible[0]];
} else {
ans += alphabet[possible[1]];
}
}
if (press(ans + alphabet[possible[0]]) == n) {
ans += alphabet[possible[0]];
return ans;
}
if (press(ans + alphabet[possible[1]]) == n) {
ans += alphabet[possible[1]];
return ans;
}
ans += alphabet[possible[2]];
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |