제출 #1067473

#제출 시각아이디문제언어결과실행 시간메모리
1067473dosts콤보 (IOI18_combo)C++17
5 / 100
1 ms596 KiB
#include "combo.h"
//Dost SEFEROĞLU
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int,int>
#define ff first
#define ss second
#define sp << " " <<    
#define all(cont) cont.begin(),cont.end()
#define vi vector<int>
const int MOD = 1e9+7,inf = 2e18;
const int N = 1e5+50;
 
string guess_sequence(int32_t N) {
  string cur;
  char firstletter = 'Y';
  vector<char> chars = {'A','B','X'};
  random_shuffle(all(chars));
  for (auto it : chars) {
    string ss;
    ss+=it;
    if (press(ss)) {
      firstletter = it;
      break;
    }
  }
  char alterone = '0',altertwo = '0',alterthree = '0';
  chars = {'A','B','X','Y'};
  random_shuffle(all(chars));
  for (auto it : chars) {
    if (it != firstletter) {
      if (alterone == '0') alterone = it;
      else if (altertwo == '0') altertwo = it;
      else if (alterthree == '0') alterthree = it;
    }
  }
  cur+=firstletter;
  for (int i=2;i<=N-1;i++) {
    string presser = cur;
    presser+=altertwo;
    presser+=cur;
    presser+=alterone;
    presser+=altertwo;
    presser+=cur;
    presser+=alterone;
    presser+=alterthree;
    presser+=cur;
    presser+=alterone;
    presser+=alterone;
    int v = press(presser);
    if (v == cur.length()){
      cur+=alterthree;
      continue;
    }
    else if (v == cur.length()+1) {
      cur+=altertwo;
      continue;
    }
    else cur+=alterone;
  }
  random_shuffle(all(chars));
  char lastletter = alterone;
  for (auto it : chars) {
    if (it == firstletter || it == lastletter) continue;
    string curr = cur;
    curr+=it;
    if (press(curr) > cur.length()) {
      lastletter = it;
      break;
    }
  }
  cur+=lastletter;
  return cur;
}

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

combo.cpp: In function 'std::string guess_sequence(int32_t)':
combo.cpp:52:11: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   52 |     if (v == cur.length()){
      |         ~~^~~~~~~~~~~~~~~
combo.cpp:56:16: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   56 |     else if (v == cur.length()+1) {
      |              ~~^~~~~~~~~~~~~~~~~
combo.cpp:68:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   68 |     if (press(curr) > cur.length()) {
      |         ~~~~~~~~~~~~^~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...