QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#709333 | #7703. Base Hi-Lo Game | rand123 | TL | 0ms | 0kb | C++14 | 1.8kb | 2024-11-04 14:03:07 | 2024-11-04 14:03:08 |
answer
#include <bits/stdc++.h>
#define pii pair<int,int>
#define pb push_back
#define yes "YES"
#define no "NO"
#define ll long long
#define MOD 1000000007
#define all(x) x.begin(),x.end()
#define MOD2 998244353
using namespace std;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll b;
char cvt(int a){
if (a<=9) return a+'0';
if (a<=35) return (a-10+'A');
return a-35 + 'a';
}
void solve(int cas){
int d; cin>>d;
vector<ll> lp(d, 0), rp (d, b - 1);
vector<map<ll,char>> r(d);
while (1){
string s;
for (int i = 0; i < d; i++) s.pb(cvt((lp[i]+rp[i])/2));
cout<<s<<endl;
string res; cin>>res;
for (int i = 0; i < d; i++){
if (r[i].count((lp[i]+rp[i])/2) && r[i][(lp[i]+rp[i])/2]!=res[i]){
cout<<"cheater"<<endl;
string c; cin>>c;
return;
}
r[i][(lp[i] + rp[i])/2] = res[i];
ll mid = (lp[i] + rp[i])/2;
if (res[i]=='='){
lp[i] = rp[i] = mid;
}
else if (res[i] == '-'){
if (mid==lp[i]){
cout<<"cheater"<<endl;
string c; cin>>c;
return;
}
rp[i] = mid - 1;
}
else if (res[i]=='+'){
if (mid==rp[i]){
cout<<"cheater"<<endl;
string c; cin>>c;
return;
}
lp[i] = mid + 1;
}
}
}
}
int main(){
int t=1;
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>b;
cout.tie(NULL);
cin>>t;
for (int i = 1; i<=t; i++){
solve(i);
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Time Limit Exceeded
input:
10 2 5 ---=+ =++=- ==+== correct 6
output:
44444 11147 12245 12345 cheater