제출 #900135

#제출 시각아이디문제언어결과실행 시간메모리
900135Omar_Elgedawy콤보 (IOI18_combo)C++17
0 / 100
1 ms380 KiB
#include "combo.h" #include <bits/stdc++.h> using namespace std; mt19937 mt(time(nullptr)); string guess_sequence(int n) { vector<char> chr(3); string cur; if (press("A"))chr = {'B', 'X', 'Y'}, cur = "A"; else if (press("B"))chr = {'A', 'X', 'Y'}, cur = "B"; else if (press("X"))chr = {'A', 'B', 'Y'}, cur = "X"; else chr = {'A', 'X', 'B'}, cur = "Y"; for (int i = 1; i < n; i++) { // cout<<cur+chr[0]+chr[1]+cur+chr[0]+chr[2]+cur+chr[1]<<endl; int len=press(cur+chr[0]+chr[1]+cur+chr[0]+chr[2]+cur+chr[1]); if(len==cur.size())cur+=chr[2]; else if(len==cur.size()+2)cur+=chr[0]; else cur+=chr[1]; } // cout<<cur<<el; return cur; }

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

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:17:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   17 |         if(len==cur.size())cur+=chr[2];
      |            ~~~^~~~~~~~~~~~
combo.cpp:18:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   18 |         else if(len==cur.size()+2)cur+=chr[0];
      |                 ~~~^~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...