제출 #107281

#제출 시각아이디문제언어결과실행 시간메모리
107281wonyoung콤보 (IOI18_combo)C++14
5 / 100
1 ms232 KiB
#include <vector>
#include <string>
using namespace std;
int press(string p);

char binary_guess(string prefix)
{
    int pn = prefix.length();
    if (press(prefix + 'A' + prefix + 'B') > pn)
    {
        if (press(prefix + 'A') > pn)
            return 'A';
        return 'B';
    }
    if (press(prefix + 'X') > pn)
        return 'X';
    return 'Y';
}

string guess_sequence(int N)
{
    vector<char> buttons = { 'A', 'B', 'X', 'Y' };
    string prefix;

    prefix += binary_guess("");
    for (vector<char>::iterator it = buttons.begin(); it != buttons.end(); it++)
        if (*it == prefix[0])
        {
            buttons.erase(it);
            break;
        }

    int i;
    bool skip = false;
    int pn;
    while ((pn = prefix.length()) < N - 1)
    {
        string query_string;
        query_string += prefix + buttons[0];
        for (int i=0; i<3; i++)
            query_string += prefix + buttons[1] + buttons[i];
        int n = press(query_string);
        if (n == pn + 1)
            prefix += buttons[0];
        else if (n == pn + 2)
            prefix += buttons[1];
        else
            prefix += buttons[2];
    }
    prefix += binary_guess(prefix);

    return prefix;
}

컴파일 시 표준 에러 (stderr) 메시지

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:33:9: warning: unused variable 'i' [-Wunused-variable]
   33 |     int i;
      |         ^
combo.cpp:34:10: warning: unused variable 'skip' [-Wunused-variable]
   34 |     bool skip = false;
      |          ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...