제출 #228386

#제출 시각아이디문제언어결과실행 시간메모리
228386hhh07콤보 (IOI18_combo)C++14
0 / 100
1 ms200 KiB
#include <iostream>
#include <string>
#include <algorithm>
#include "combo.h"

using namespace std;

string guess_sequence(int n){
    string curr = "";
    char x[4];
    x[0] = 'A'; x[1] = 'B'; x[2] = 'X'; x[3] = 'Y';
    if (n == 1){
        if (press("AB") > 0){
            if (press("A") > 0)
                return "A";
            return "B";
        }
        if (press("X") > 0)
            return "X";
        return "Y";
    }
    while(curr.length() < n){
        if (curr.length() == n - 1){
            if (press(curr + x[0]) == n)
                return curr + x[0];
            if (press(curr + x[1]) == n)
                return curr + x[1];
            return curr + x[2];
        }
        if (curr.length() == 0){
            if (press("AB") > 0){
                if (press("A") > 0)
                    curr += 'A';
                else
                    curr += 'B';
            }
            else{
                if (press("X") > 0)
                    curr += 'X';
                else
                    curr += 'Y';
            }
            for (int i = 0; i < 4; i++)
                if (curr[0] == x[i])
                    x[i] = 250;
            sort(x, x + 4);
        }
        else{
            string s = "";
            for (int i = 0; i < 3; i++)
                s += curr + x[0] + x[i];
            s += curr + x[1] + curr[0];
            if (press(s) >= 2)
                curr += x[0];
            else if (press(s) >= 1)
                curr += x[1];
            else
                curr += x[2];
        }
    }
    return curr;
}

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

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:22:25: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   22 |     while(curr.length() < n){
      |           ~~~~~~~~~~~~~~^~~
combo.cpp:23:27: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   23 |         if (curr.length() == n - 1){
      |             ~~~~~~~~~~~~~~^~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...