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