이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "combo.h"
using namespace std;
string guess_sequence(int N){
int n = N, x;
string s;
set <char> let;
let.insert({'A', 'B', 'X', 'Y'});
char ch = 0;
x = press(s + 'A' + s + 'B');
if(x >= 1){
x = press(s + 'A');
if(x == 0) ch = 'B';
else ch = 'A';
}
else{
x = press(s + 'X');
if(x == 0) ch = 'Y';
else ch = 'X';
}
s.push_back(ch);
if(n == 1) return s;
let.erase(ch);
// cerr << ch;
set <char> :: iterator it = let.begin();
char A, B, C;
A = *it; ++it; B = *it; ++it; C = *it;
for(int i = 2; i < n ; ++i){
int x = press(s + A + s + B + A + s + B + B + s + B + C);
if(x == i - 1) {
s.push_back(C);
// cerr << C;
}
else if(x == i){
s.push_back(A);
// cerr << A;
}
else if(x == i + 1){
s.push_back(B);
// cerr << B;
}
}
ch = 0;
x = press(s + 'A' + s + 'B');
if(x == n){
x = press(s + 'A');
if(x == n - 1) ch = 'B';
else ch = 'A';
}
else{
x = press(s + 'X');
if(x == n - 1) ch = 'Y';
else ch = 'X';
}
// cerr << ch;
// cerr << endl;
s.push_back(ch);
return s;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |