# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
646082 | sandry24 | Combo (IOI18_combo) | C++17 | 0 ms | 0 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>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> pi;
#define pb push_back
#define mp make_pair
#define f first
#define s second
int press(std::string p);
vector<char> chars = {'A', 'B', 'X', 'Y'};
string guess_sequence(int n){
string temp = "";
while(temp.size() != n){
if(temp.size() == 0){
int ans = 3;
for(int i = 0; i < 3; i++)
if(press(temp + chars[i]) == temp.size()+1)
ans = i;
temp += chars[ans];
chars.erase(find(chars.begin(), chars.end(), temp[0]));
} else {
int ans = 2;
for(int i = 0; i < 2; i++)
if(press(temp + chars[i]) == temp.size()+1)
ans = i;
temp += chars[ans];
}
}
return temp;
}
void solve(){
}
int main(){
ios::sync_with_stdio(0); cin.tie(0);
int t = 1;
cin >> t;
while(t--){
solve();
}
}