이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
const string BUTTONS = "ABXY";
string tmp[4];
int solve(int l, int r) {
if(l == r) {
return l;
}
int m = (l + r) >> 1;
string combo;
for(int i = l; i <= m; ++i) {
for(char ch : tmp[i]) {
combo.push_back(ch);
}
}
if(press(combo) >= (int)tmp[0].size()) {
return solve(l, m);
}
return solve(m + 1, r);
}
string guess_sequence(int N) {
string res;
for(int i = 1; i <= N; ++i) {
for(int j = 0; j < 4; ++j) {
tmp[j] = res;
tmp[j].push_back(BUTTONS[j]);
}
res.push_back(BUTTONS[solve(0, 3)]);
}
return res;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |