# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
676036 | Hegdahl | Combo (IOI18_combo) | C++17 | 36 ms | 648 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 "combo.h"
#include <bits/stdc++.h>
using namespace std;
string guess_sequence(int n) {
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
char starter = '?';
if (press("AB")) {
if (press("A"))
starter = 'A';
else
starter = 'B';
} else if (press("X"))
starter = 'X';
else
starter = 'Y';
string abc;
for (char ch : {'A', 'B', 'X', 'Y'})
if (ch != starter) abc += ch;
assert(abc.size() == 3);
char a = abc[0];
char b = abc[1];
char c = abc[2];
string ans = {starter};
while ((int)ans.size() < n) {
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |