제출 #1067459

#제출 시각아이디문제언어결과실행 시간메모리
1067459dosts콤보 (IOI18_combo)C++17
88 / 100
20 ms2048 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','Y'}; 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'; 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)); for (auto it : chars) { if (it == firstletter) continue; string curr = cur; curr+=it; if (press(curr) > cur.length()) { cur+=it; break; } } return cur; }

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

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