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