이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
#include <vector>
std::string guess_sequence(int N) {
std::vector<char> c;
std::string prefix;
if(press("AB") != 0) {
if(press("A") != 0) {
c = {'B', 'X', 'Y'};
prefix = "A";
} else {
c = {'A', 'X', 'Y'};
prefix = "B";
}
} else {
if(press("X") != 0) {
c = {'A', 'B', 'Y'};
prefix = "X";
} else {
c = {'A', 'B', 'X'};
prefix = "Y";
}
}
while(prefix.size() != N) {
if(press(prefix + c[0] + prefix + c[1]) > prefix.size()) {
if(press(prefix + c[0]) > prefix.size()) {
prefix += c[0];
} else {
prefix += c[1];
}
} else {
prefix += c[2];
}
}
return prefix;
}
컴파일 시 표준 에러 (stderr) 메시지
combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:25:25: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
25 | while(prefix.size() != N) {
| ~~~~~~~~~~~~~~^~~~
combo.cpp:26:49: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | if(press(prefix + c[0] + prefix + c[1]) > prefix.size()) {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
combo.cpp:27:37: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | if(press(prefix + c[0]) > prefix.size()) {
| ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |