Submission #280410

#TimeUsernameProblemLanguageResultExecution timeMemory
280410amallaCombo (IOI18_combo)C++17
5 / 100
91 ms308 KiB
#include "combo.h"
#include<bits/stdc++.h>

using namespace std;

string guess_sequence(int N) {
    string p = "", test = "";
    int coins = 0;
    for (int i = 0; i<N; ++i) {
        char best = 'A';
        test += 'A';
        if (coins<press(test)) ++coins;
        for (char x : "BXY")  {
            test[i] = x;
            if (coins<press(test)) {
                best = x;
                ++coins;
            }
        }
        p += best;
        test[i] = p[i];
    }
    return p;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...