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 <bits/stdc++.h>
using namespace std;
#define int long long
int BinSrch(int l, int r, int cnt, int ans) {
int f = 0;
while(l <= r) {
int response;
if(cnt % 2 == 0) {
cout << "? " << l++ << endl;
}
else {
cout << "? " << r-- << endl;
}
cnt++;
cin >> response;
if(cnt == 1)
continue;
if(response == 1) {
ans = min(ans, r - l + 2);
}
else {
cout << "= " << ans << endl;
f = 1;
break;
}
}
if(f == 0) {
cout << "= " << ans << endl;
}
//cout << "cnt of queries = " << cnt << endl;
}
void Solve() {
int n;
cin >> n;
if(n == 64) {
BinSrch(1, 64, 0, 64);
return;
}
int l = 1, r = n, ans = n;
cout << "? 64" << endl;
int response;
cin >> response;
cout << "? 128" << endl;
cin >> response;
if(response == 1) {
l = 65, r = 127, ans = 64;
}
else {
l = 1, r = 127;
}
BinSrch(l, r, 2, ans);
}
int32_t main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
Solve();
return 0;
}
Compilation message (stderr)
Colors.cpp: In function 'long long int BinSrch(long long int, long long int, long long int, long long int)':
Colors.cpp:32:1: warning: no return statement in function returning non-void [-Wreturn-type]
32 | }
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |