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"
#include "bits/stdc++.h"
using namespace std;
#define FAST ios_base::sync_with_stdio(false); cin.tie(0);
#define pb push_back
#define eb emplace_back
#define ins insert
#define f first
#define s second
#define cbr cerr<<"hi\n"
#define mmst(x, v) memset((x), v, sizeof ((x)))
#define siz(x) ll(x.size())
#define all(x) (x).begin(), (x).end()
#define lbd(x,y) (lower_bound(all(x),y)-x.begin())
#define ubd(x,y) (upper_bound(all(x),y)-x.begin())
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); //can be used by calling rng() or shuffle(A, A+n, rng)
inline long long rand(long long x, long long y) { return rng() % (y+1-x) + x; } //inclusivesss
string inline to_string(char c) {string s(1,c);return s;} template<typename T> inline T gcd(T a,T b){ return a==0?llabs(b):gcd(b%a,a); }
using ll=long long;
using ld=long double;
#define FOR(i,s,e) for(ll i=s;i<=ll(e);++i)
#define DEC(i,s,e) for(ll i=s;i>=ll(e);--i)
using pi=pair<ll,ll>; using spi=pair<ll,pi>; using dpi=pair<pi,pi>;
#define LLINF ((long long)1e18)
#define INF int(1e9+1e6)
#define MAXN (300006)
std::string guess_sequence(int n) {
string ans = "";
ll val = press("AB");
if(val>1){
val=press("A");
if(val==1) ans = 'A';
else ans = 'B';
}else{
val = press("X");
if(val==1) ans = 'X';
else ans = 'Y';
}
bool weird = 0;
vector<string> pos;
for(auto i:{"A","B","X","Y"}) if(ans != i) pos.eb(i);
string one="", two="";
ll pre = 0;
auto gen=[&](string x,string y){
while(x.size() < n) x += y;
return x;
};
auto times=[&](string x,ll y){
string ret="";
FOR(i,1,y)ret+=x;
return ret;
};
FOR(i,2,n){
if(weird){
vector<string> other;
for(auto i:pos) if(one != i) other.eb(i);
ll val = press(gen(ans + times(one, pre - siz(ans)), other[0]) +
gen(ans + times(one, pre - siz(ans)), other[1]));
if(val == ans.size()){
while(ans.size() != pre) ans += two;
}else{
while(ans.size() != pre) ans += one;
}
pre = val, one = other[0], two = other[1];
i = pre;
}else{
ll val = press(gen(ans,pos[0])+gen(ans,pos[1]));
if(val == ans.size()){
ans += pos[2];
}else{assert(val>ans.size());
// weird time
weird = 1;
pre = val, one = pos[0], two = pos[1];
i = pre;
}
}
}
if(ans.size() < n){ assert(weird);
ll val=press(ans + one);
if(val > ans.size()){
while(ans.size() < n) ans += one;
}else {
while(ans.size() < n) ans += two;
}
}assert(ans.size()==n);
return ans;
}
Compilation message (stderr)
combo.cpp: In lambda function:
combo.cpp:49:18: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
49 | while(x.size() < n) x += y;
| ~~~~~~~~~^~~
combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:63:11: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
63 | if(val == ans.size()){
| ~~~~^~~~~~~~~~~~~
combo.cpp:64:22: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
64 | while(ans.size() != pre) ans += two;
| ~~~~~~~~~~~^~~~~~
combo.cpp:66:22: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
66 | while(ans.size() != pre) ans += one;
| ~~~~~~~~~~~^~~~~~
combo.cpp:72:11: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
72 | if(val == ans.size()){
| ~~~~^~~~~~~~~~~~~
In file included from /usr/include/c++/10/cassert:44,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:33,
from combo.cpp:2:
combo.cpp:74:20: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
74 | }else{assert(val>ans.size());
| ~~~^~~~~~~~~~~
combo.cpp:82:16: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
82 | if(ans.size() < n){ assert(weird);
| ~~~~~~~~~~~^~~
combo.cpp:84:10: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
84 | if(val > ans.size()){
| ~~~~^~~~~~~~~~~~
combo.cpp:85:21: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
85 | while(ans.size() < n) ans += one;
| ~~~~~~~~~~~^~~
combo.cpp:87:21: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
87 | while(ans.size() < n) ans += two;
| ~~~~~~~~~~~^~~
In file included from /usr/include/c++/10/cassert:44,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:33,
from combo.cpp:2:
combo.cpp:89:20: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
89 | }assert(ans.size()==n);
| ~~~~~~~~~~^~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |