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