Submission #951489

# Submission time Handle Problem Language Result Execution time Memory
951489 2024-03-22T03:28:47 Z phoenix0423 Colors (BOI20_colors) C++17
0 / 100
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

Colors.cpp: In function 'int main()':
Colors.cpp:29:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   29 |     for(int i = 0; i < step.size(); i++){
      |                    ~~^~~~~~~~~~~~~
# 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 -