이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "combo.h"
std::string guess_sequence(int N) {
std::string p = "";
std::string c="";
if (press("AB")>0){
if (press("A")>0){
c="BXY"; p="A";
}
else {
c="AXY"; p="B";
}
} else {
if (press("X")>0){
c="ABY"; p="X";
}
else {
c="ABX"; p="Y";
}
}
if (N==1)return p;
for (int i=1; i<N-1; i++){
int coins=press(p+c[0]+c[0]+p+c[0]+c[1]+p+c[0]+c[2]+p+c[1]);
if (coins==i+1){
p+=c[1];
} else if (coins==i+2){
p+=c[0];
} else {
p+=c[2];
}
}
if (press(p+c[0])==N){
p+=c[0];
} else if (press(p+c[1])==N){
p+=c[1];
} else {
p+=c[2];
}
return p;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |