Submission #855742

#TimeUsernameProblemLanguageResultExecution timeMemory
855742IS_RushdiCombo (IOI18_combo)C++17
0 / 100
0 ms344 KiB
// #include <iostream> #include "combo.h" using namespace std; // int press(string x){ // return 0; // } string guess_sequence(int N) { string x = "ABXY"; string S = ""; int cost = press("AB"); if(cost != 0){ cost = press("A"); if(cost == 1) S += 'A'; else S += 'B'; }else{ cost = press("X"); if(cost == 1) S += 'X'; else S += 'Y'; } if(S[0] == 'A') x = "BXY"; else if(S[0] == 'B') x = "AXY"; else if(S[0] == 'X') x = "ABY"; else x = "ABX"; for(int i = 1; i < N; i++){ string p = ""; for(int j = 0; j < 3; j++){ p+=S; p+=x[0]; p+=x[j]; }p+=S; p+=x[1]; cost = press(p); if(cost-S.size() >= 2){ S += x[0]; }else if(cost-S.size() == 1){ S += x[1]; }else{ S += x[2]; } } if(S.size() != N){ cost = press(S+x[0]); if(cost == N){ S += x[0]; }else{ cost = press(S+x[1]); if(cost == N){ S += x[1]; }else{ S+=x[2]; } } } return S; } // int main(){ // }

Compilation message (stderr)

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