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