Submission #1105863

#TimeUsernameProblemLanguageResultExecution timeMemory
1105863abushbandit_Combo (IOI18_combo)C++17
10 / 100
55 ms972 KiB
#include "combo.h"
#include "bits/stdc++.h"

using namespace std;

string guess_sequence(int N) {
  string p = "";
  vector<char> a = {'A','B','X','Y'};
  vector<int> vis(4);
  for(int i = 0;i < N;i++) {
	for(int j = 0;j < 4;j++) {
		if(vis[j]) continue;
		p.push_back(a[j]);
		if(press(p) == i + 1) {
			if(i + 1 == 1) {
				vis[j] = 1;
			}
			break;
		}
		p.pop_back();
	}
  }
  return p;
}

	
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...