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