제출 #841326

#제출 시각아이디문제언어결과실행 시간메모리
841326theghostking콤보 (IOI18_combo)C++14
5 / 100
69 ms572 KiB
#include <bits/stdc++.h>
using namespace std;
#include "combo.h"

string guess_sequence(int N) {
    string curr = "";
    string base = "ABXY";
    bool chg = true;
    int score = 0;
    while (chg){
        chg = false;
        for (int i = 0; i<4; i++){
            string sp = curr;
            sp.push_back(base[i]);
            int sc = press(sp);
            if (sc-score == 1){
                curr.push_back(base[i]);
                score = sc;
                chg = true;
                break;
            }
        }
    }
    return curr;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...