이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "combo.h"
#define ll long long int
#define mp make_pair
#define pb push_back
#define ld long double
#define pii pair<int,int>
#define sz(x) (int)x.size()
#define piii pair<pii,pii>
#define precise cout<<fixed<<setprecision(10)
#define st first
#define nd second
#define ins insert
#define vi vector<int>
#define BOOST ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0)
using namespace std;
const char lit[4]={'X','Y','A','B'};
string guess_sequence(int n)
{
string ans="";
char first;
if (press("X"))first='X';
else if (press("Y"))first='Y';
else if (press("A"))first='A';
else first='B';
ans+=first;
vector<char>unused;
unused.clear();
for (int i=0;i<4;i++)if (lit[i]!=first)unused.pb(lit[i]);
for (int i=1;i<=n-2;i++)
{
int news=press(ans+unused[0]+ans+unused[1]+unused[0]+ans+unused[1]+unused[1]+ans
+unused[1]+unused[2]);
if (news==sz(ans)+1)ans+=unused[0];
else if (news==sz(ans)+2)ans+=unused[1];
else ans+=unused[2];
}
if (press(ans+unused[0])==sz(ans)+1)ans+=unused[0];
else if (press(ans+unused[1])==sz(ans)+1)ans+=unused[1];
else ans+=unused[2];
return ans;
}
/*
int32_t main()
{
BOOST;
return 0;
}
*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |