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