이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// #include <iostream>
#include "combo.h"
using namespace std;
string guess_sequence(int N) {
string p = "";
string x = "ABXY";
string S = "";
char z = 'Y';
p +="AB";
int cost = press(p);
if(cost >= 1){
p = "A";
cost = press(p);
if(cost == 1) z = 'A';
else z = 'B';
}else{
p = "X";
cost = press(p);
if(cost == 1) z = 'X';
else z = 'Y';
}
S+=z;
string tmp = "";
for(int i = 0; i < 4; i++){
if(x[i] != z) tmp+=x[i];
}x = tmp;
if(N%2 == 0){
cost = press(S+x[0]);
if(cost == 2){
S += x[0];
}else{
cost = press(S+x[1]);
if(cost == 2){
S += x[1];
}else{
S+=x[2];
}
}
}
for(int i = S.size(); i <= N; i++){
p = "";
for(int j = 0; j < 3; j++){
p+=S;
p+=x[0];
p+=x[j];
}p+=S;
p+=x[1];
cost = press(p);
if(cost-S.size() == 2){
S += x[0];
}else if(cost-S.size() == 1){
S += x[1];
}else{
S += x[2];
}
}
return S;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |