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