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