# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
154059 | nthoang | Combo (IOI18_combo) | C++11 | 5 ms | 296 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#ifndef LOCAL
#include "combo.h"
#endif
#ifdef LOCAL
#include "/Users/nth842002/Library/debug.h"
int press(string p);
int main();
#endif
using namespace std;
const char moves[] = {'A', 'B', 'X', 'Y'};
string guess_sequence(int n) {
for (int mask = 0; mask < (1 << (n + n)); mask++) {
string s;
s.resize(n);
for (int i = 0, t = mask; i < n; i++) {
s[i] = moves[t % 4];
t /= 4;
}
if (press(s) == n) {
return s;
}
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |