제출 #162494

#제출 시각아이디문제언어결과실행 시간메모리
162494abacaba콤보 (IOI18_combo)C++14
97 / 100
50 ms612 KiB
#include <iostream>
#include <string>
#include <unordered_map>
#include <cstring>
#include <chrono>
#include <vector>
#include <map>
#include <random>
#include <set>
#include <algorithm>
#include <math.h>
#include <cstdio>
#include <stdio.h>
#include <assert.h>
#include <queue>
#include <bitset>
#include <cstdlib>
#include <deque>
#include <cassert>
#include <stack>
#include "combo.h"
using namespace std;

string seq[4] = {"A", "B", "X", "Y"};
int n, let1 = 3;

string guess_sequence(int N) {
    for(int i = 0; i < 3; ++i)
        if(press(seq[i])) {
            let1 = i;
            break;
        }
    string s = seq[let1];
    swap(seq[3], seq[let1]);
    if(N == 1)
        return s;
    for(int i = 2; i < N; ++i) {
        string now = s + seq[0];
        for(int j = 0; j < 3; ++j)
            now += s + seq[1] + seq[j];
        int p = press(now);
        if(p == s.size())
            s += seq[2];
        else if(p == s.size() + 1)
            s += seq[0];
        else
            s += seq[1];
    }
    for(int i = 0; i < 2; ++i)
        if(press(s + seq[i]) == N)
            return s + seq[i];
    return s + seq[2];
}

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

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:42:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   42 |         if(p == s.size())
      |            ~~^~~~~~~~~~~
combo.cpp:44:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   44 |         else if(p == s.size() + 1)
      |                 ~~^~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...