제출 #142690

#제출 시각아이디문제언어결과실행 시간메모리
142690triplem5ds콤보 (IOI18_combo)C++14
30 / 100
68 ms536 KiB
#include "combo.h"
//#include "grader.cpp"
#include <bits/stdc++.h>
using namespace std;
set<char> go = {'A','B','X','Y'};

std::string guess_sequence(int N) {
  std::string p = "";

  for(int i = 0; i < N; i++){
  	for(auto c : go){
      p.push_back(c);
      if(c == *go.rbegin())break;
  		int x = press(p);
  		if(x > i){
  			break;
  		}
  		p.pop_back();
  	}
  	go.erase(p[0]);
  }
  return p;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...