# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
951489 | 2024-03-22T03:28:47 Z | phoenix0423 | Colors (BOI20_colors) | C++17 | 1 ms | 344 KB |
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<ll, ll> pll; #define fastio ios::sync_with_stdio(false), cin.tie(0) #define pb push_back #define eb emplace_back #define f first #define s second int t, pre; bool qry(int x){ cout<<"? "<<x<<"\n"; cin>>x; return x; } signed main(void){ int n; cin>>n>>t; vector<int> step; int l = 0, r = n; while(l + 1 < r){ int m = (l + r) / 2; step.pb(m); l = m; } reverse(step.begin(), step.end()); int pos = 1; for(int i = 0; i < step.size(); i++){ pos += step[i] * (i % 2 ? -1 : 1); } qry(pos); l = 0, r = n; int sign = (step.size() % 2 ? -1 : 1); while(l + 1 < r){ int m = (l + r) / 2; if(qry(pos + sign * m)) r = m; else l = m; pos += sign * m; sign *= -1; } cout<<"= "<<r<<"\n"; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1 ms | 344 KB | Time limit exceeded (wall clock) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1 ms | 344 KB | Time limit exceeded (wall clock) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1 ms | 344 KB | Time limit exceeded (wall clock) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1 ms | 344 KB | Time limit exceeded (wall clock) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1 ms | 344 KB | Time limit exceeded (wall clock) |
2 | Halted | 0 ms | 0 KB | - |