이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
const int t = chrono::high_resolution_clock::now().time_since_epoch().count();
string guess_sequence(int N) {
static mt19937 rng = mt19937(t%10000/10);
string cur = ""; cur.reserve(N);
for (int i = 0; i < N; ++i) {
const char *s = "ABXY";
int order = rng() % 24;
for (int o = 4; o >= 1; --o) {
cur += s[order%o], order /= o;
if (press(cur) == i+1) break;
cur.pop_back();
}
}
return cur;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |