# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1062762 | Wasif_Shahzad | Combo (IOI18_combo) | C++17 | 34 ms | 956 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;
std::string guess_sequence(int N) {
random_device rd;
mt19937 g(rd());
vector<char> moves = {'A', 'B', 'X', 'Y'};
string ans;
char first;
for(int i = 0; i < N; i++){
shuffle(moves.begin(), moves.end(), g);
for(char option: moves){
if(i != 0 and option == first) continue;
string tmp = ans + option;
int cur = press(tmp);
if(cur == ans.size() + 1){
ans = tmp;
break;
}
}
if(i == 0) first = ans[0];
}
return ans;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |