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