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