# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
659982 | jamezzz | Colors (BOI20_colors) | C++17 | 1 ms | 276 KiB |
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 sf scanf
#define pf printf
#define pb push_back
typedef long long ll;
inline int ask(ll x){
pf("? %lld\n",x);
fflush(stdout);
int a;sf("%d",&a);
return a;
}
inline void ans(ll x){
pf("= %lld\n",x);
exit(0);
}
int main(){
ll n;sf("%lld",&n);
ll lo=1,hi=n-1,mid,res=n-1;
vector<ll> v;
while(lo<=hi){
mid=(lo+hi)>>1;
v.pb(mid);
lo=mid+1;
}
ll cur=1;int m=1;
for(int i=v.size()-1;i>=0;--i){
cur+=m*v[i];
m=-m;
}
ask(cur);
lo=1,hi=n-1;
while(lo<=hi){
mid=(lo+hi)>>1;
cur+=m*mid;
m=-m;
if(ask(cur)==1)res=mid,hi=mid-1;
else lo=mid+1;
}
ans(res);
}
Compilation message (stderr)
# | 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... |