Submission #1289142

#TimeUsernameProblemLanguageResultExecution timeMemory
1289142IsamCombo (IOI18_combo)C++20
100 / 100
8 ms480 KiB
#include "combo.h"
#include "bits/stdc++.h"

using namespace std;

char ch[] = "ABXY";

string guess_sequence(int N) {
    string x = "";
    x += ((press(x + "A" + x + "B") >= 1) ? ((press(x + "A") >= 1) ? "A": "B") : ((press(x + "X") >= 1) ? "X" : "Y"));
    vector<char> v;
    for(int i = 0; i < 4; ++i) if(ch[i] ^ x[0]) v.emplace_back(ch[i]);
    for(int i = 1; i < N - 1; ++i){
        string y = x + v[1] + x + v[2] + v[0]  + x + v[2] + v[1]  + x + v[2] + v[2];
        int r{press(y)};
        x += ((r == i) ? v[0] : ((r == i + 1) ? v[1] : v[2]));
    }
    if(N > 1) x += (press(x + "A" + x + "B") >= N) ? ((press(x + "A") >= N) ? "A" : "B")  : ((press(x + "X") >= N) ? "X" : "Y");
    return x;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...