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