이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define v(x) vector<x>
#define pb push_back
#define mp make_pair
const ll maxint=2e18;
const ll minint =-2e18;
/*
(͡ ° ͜ʖ ͡ °): Hi, be careful of overflow.
*/
int press(string p);
/*
// comment out when submitting
int cnt = 0;
int press(string p){
cnt++;
cout<<p<<endl;
int x;
cin>>x;
return x;
}
*/
string let[4]={"A","B","X","Y"};
string guess_sequence(int N){
string res ="";
int avoid = 0;
for(int j=0;j<4;j++){
int x = press((res+let[j]));
if(x == 1){
res+=let[j];
avoid = j;
break;
}
}
vector<string> lett;
for(int i=0;i<4;i++)if(i!=avoid)lett.push_back(let[i]);
for(int i=1;i<N;i++){
int x = press(res+lett[0]+res+lett[0]+lett[0]+res+lett[0]+lett[1]+res+lett[0]+lett[2]+res+lett[1]);
if(x == i+2){
res+=lett[0];
}else if(x == i+1){
res+=lett[1];
}
else{
res += lett[2];
}
}
return res;
}
//* Notes:
//* the first character of S never reappears in it
// comment out when submitting
/*
int main(){
int n;
cin>>n;
cout<<guess_sequence(n)<<'\n';
cout<<cnt<<endl;
return 0;
}*/
/*
5
YABAB
*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |