제출 #565861

#제출 시각아이디문제언어결과실행 시간메모리
565861imtiyazrasool92콤보 (IOI18_combo)C++17
0 / 100
0 ms208 KiB
#include "combo.h"

using namespace std;

std::string guess_sequence(int N) {
  string P, possible = "ABXY";
  for (int i = 0; i < N; i++) {
    for (int j = 0; j < (int)possible.size(); j++) {
      P.push_back(possible[i]);
      if (press(P) == (i + 1)) {
        if (i == 0) {
          possible.erase(possible.begin() + i);
        }
        break;
      }
      P.pop_back();
    }
  }
  return P;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...