This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "combo.h"
//Dost SEFEROĞLU
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int,int>
#define ff first
#define ss second
#define sp << " " <<
#define all(cont) cont.begin(),cont.end()
#define vi vector<int>
const int MOD = 1e9+7,inf = 2e18;
const int N = 1e5+50;
string guess_sequence(int32_t N) {
string cur;
char firstletter = 'Y';
vector<char> chars = {'A','B','X'};
random_shuffle(all(chars));
for (auto it : chars) {
string ss;
ss+=it;
if (press(ss)) {
firstletter = it;
break;
}
}
char alterone = '0',altertwo = '0',alterthree = '0';
chars = {'A','B','X','Y'};
random_shuffle(all(chars));
for (auto it : chars) {
if (it != firstletter) {
if (alterone == '0') alterone = it;
else if (altertwo == '0') altertwo = it;
else if (alterthree == '0') alterthree = it;
}
}
cur+=firstletter;
for (int i=2;i<=N-1;i++) {
string presser = cur;
presser+=altertwo;
presser+=cur;
presser+=alterone;
presser+=altertwo;
presser+=cur;
presser+=alterone;
presser+=alterthree;
presser+=cur;
presser+=alterone;
presser+=alterone;
int v = press(presser);
if (v == cur.length()){
cur+=alterthree;
continue;
}
else if (v == cur.length()+1) {
cur+=altertwo;
continue;
}
else cur+=alterone;
}
random_shuffle(all(chars));
char lastletter = alterone;
for (auto it : chars) {
if (it == firstletter || it == lastletter) continue;
string curr = cur;
curr+=it;
if (press(curr) > cur.length()) {
lastletter = it;
break;
}
}
cur+=lastletter;
return cur;
}
Compilation message (stderr)
combo.cpp: In function 'std::string guess_sequence(int32_t)':
combo.cpp:52:11: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
52 | if (v == cur.length()){
| ~~^~~~~~~~~~~~~~~
combo.cpp:56:16: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
56 | else if (v == cur.length()+1) {
| ~~^~~~~~~~~~~~~~~~~
combo.cpp:68:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
68 | if (press(curr) > cur.length()) {
| ~~~~~~~~~~~~^~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |