Submission #835457

#TimeUsernameProblemLanguageResultExecution timeMemory
835457KemalKCombo (IOI18_combo)C++17
30 / 100
37 ms456 KiB
#include <bits/stdc++.h>
#include "combo.h"
using namespace std;

string guess_sequence(int n) {
  string s = "";
  string cur = "ABXY";
  bool ok = false;
  for (int i = 0; i < 3; i++){
    if (press(s + cur[i])){
      s += cur[i];
      ok = true;
      break;
    }
  }
  if (!ok){
    s += cur[3];
  }
  string rem = "";
  for (int i = 0; i < 4; i++){
    if (s[0] != cur[i]){
      rem += cur[i];
    }
  }
  int cnt = 1;
  while(s.size() !=  n){
    if (press(s + rem[0]) == cnt + 1){
      s += rem[0];
    }
    else if (press(s + rem[1]) == cnt + 1){
      s += rem[1];
    }
    else{
      s += rem[2];
    }
    cnt++;
  }
  return s;
}

Compilation message (stderr)

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:26:18: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   26 |   while(s.size() !=  n){
      |         ~~~~~~~~~^~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...