Submission #1071749

#TimeUsernameProblemLanguageResultExecution timeMemory
1071749RigobertusCombo (IOI18_combo)C++17
5 / 100
24 ms456 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;

/*int press(string p) {
    cout << p << endl;
    int res; cin >> res;
    return res;
}*/

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 == 3 || 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];
            int x = press(p);
            if (x == p.size()) {
                s = p;
                break;
            }
            else if (x == 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:34:21: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   34 |     while (s.size() < n) {
      |            ~~~~~~~~~^~~
combo.cpp:49:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   49 |             if (x == p.size()) {
      |                 ~~^~~~~~~~~~~
combo.cpp:53:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   53 |             else if (x == p.size() - 1) {
      |                      ~~^~~~~~~~~~~~~~~
combo.cpp:38:17: warning: 'j' may be used uninitialized in this function [-Wmaybe-uninitialized]
   38 |                 if (i != j) {
      |                 ^~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...