이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
using namespace std;
char opt[] = {'A', 'B', 'X', 'Y'};
string guess_sequence(int N) {
string p = "";
while ((int)p.length() < N) {
int tre = 0;
bool ok = 0;
for (char c : opt) {
if (p.length() > 0 && c == p[0]) continue;
if (ok || press(p + c) == (int)p.length() + 1) {
p += c;
break;
} else tre++;
if (p.length() > 0 && tre == 2) ok = 1;
if (p.length() == 0 && tre == 3) ok = 1;
}
}
return p;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |