이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "combo.h"
using namespace std;
// int press(string p){
// }
string guess_sequence(int n){
string s;
string temp;
int x=press("AB");
string f;
string combi;
string other;
string last;
if(x>=1){
x = press("A");
if(x==1){
f="A";
combi="X";
other="B";
last="Y";
}else{
f="B";
combi="X";
other="A";
last="Y";
}
}else{
x = press("X");
if(x==1){
f="X";
combi="A";
other="B";
last="Y";
}else{
f="Y";
combi="A";
other="B";
last="X";
}
}
s=f;
while((int)s.size()!=n){
int size=(int)s.size();
if(size==n-1){
temp=s+combi+s+other;
x=press(temp);
if(x==size+1){
temp=s+combi;
x=press(temp);
if(x==size+1){
s+=combi;
}else{
s+=other;
}
}else{
s+=last;
}
break;
}
temp=s+combi+combi;
temp+=s+combi+other;
temp+=s+combi+last;
temp+=s+other;
x=press(temp);
if(x==size+2){
s+=combi;
}else{
if(x==size+1){
s+=other;
}else{
s+=last;
}
}
}
return s;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |