Submission #1071737

#TimeUsernameProblemLanguageResultExecution timeMemory
1071737RigobertusCombo (IOI18_combo)C++17
5 / 100
51 ms472 KiB
#include <iostream> #include <algorithm> #include <vector> #include <map> #include <set> #include <queue> #include <string> //#define int long long #include "combo.h" using namespace std; string guess_sequence(int n) { string c[4] = {"A", "B", "X", "Y"}; string s = ""; set<int> vis; for (int i = 0; i < 4; i++) { vis.insert(i); } int j; for (int i = 0; i < 4; i++) { if (i == 4 || press(c[i])) { s = c[i]; j = i; vis.erase(i); break; } } while (s.size() < n) { int last = *vis.rbegin(); for (int i = 0; i < 4; i++) { if (!vis.count(i)) { if (i != j) { vis.insert(i); } continue; } if (i == last) { s += c[i]; break; } string p = s + c[i] + c[i]; if (press(p) == p.size()) { s = p; break; } else if (press(p) == p.size() - 1) { s += c[i]; vis.erase(i); break; } } } return s; }

Compilation message (stderr)

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:29:21: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   29 |     while (s.size() < n) {
      |            ~~~~~~~~~^~~
combo.cpp:43:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   43 |             if (press(p) == p.size()) {
      |                 ~~~~~~~~~^~~~~~~~~~~
combo.cpp:47:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   47 |             else if (press(p) == p.size() - 1) {
      |                      ~~~~~~~~~^~~~~~~~~~~~~~~
combo.cpp:33:17: warning: 'j' may be used uninitialized in this function [-Wmaybe-uninitialized]
   33 |                 if (i != j) {
      |                 ^~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...