Submission #967275

#TimeUsernameProblemLanguageResultExecution timeMemory
967275AlesL0Combo (IOI18_combo)C++17
0 / 100
0 ms344 KiB
#include <bits/stdc++.h> #include "combo.h" using namespace std; typedef long long ll; string guess_sequence(int N){ string sol = ""; vector <char> c = {'a', 'b', 'x', 'y'}; int missing; if (press("ab")){ if (press("a"))missing = 0; else missing = 1; } else { if (press("x"))missing = 2; else missing = 3; } c.erase(c.begin()+missing); while (sol.size() < N){ if (sol.size() + 1 == N){ string t = sol; t += c[0]; t += sol; t += c[1]; if (press(t) == N){ t = sol; t += c[0]; if (press(t))sol += c[0]; else sol += c[1]; } else sol += c[2]; } else { string t = sol; t += c[0]; t += c[0]; t += sol; t += c[0]; t += c[1]; t += sol; t += c[0]; t += c[2]; t += sol; t += c[1]; int x = press(t); if (x == sol.size())sol += c[2]; else if (x == sol.size()+1)sol += c[1]; else sol += c[0]; } } return sol; }

Compilation message (stderr)

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:21:23: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   21 |     while (sol.size() < N){
      |            ~~~~~~~~~~~^~~
combo.cpp:22:28: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   22 |         if (sol.size() + 1 == N){
      |             ~~~~~~~~~~~~~~~^~~~
combo.cpp:48:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   48 |             if (x == sol.size())sol += c[2];
      |                 ~~^~~~~~~~~~~~~
combo.cpp:49:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   49 |             else if (x == sol.size()+1)sol += c[1];
      |                      ~~^~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...