結果

問題 No.1830 Balanced Majority
ユーザー abc3abc3
提出日時 2022-02-05 03:53:44
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 1,494 bytes
コンパイル時間 1,941 ms
コンパイル使用メモリ 198,788 KB
実行使用メモリ 24,384 KB
平均クエリ数 7.54
最終ジャッジ日時 2023-09-02 06:25:20
合計ジャッジ時間 4,252 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
23,640 KB
testcase_01 AC 25 ms
24,036 KB
testcase_02 AC 25 ms
24,024 KB
testcase_03 AC 25 ms
24,036 KB
testcase_04 AC 25 ms
24,384 KB
testcase_05 AC 24 ms
24,036 KB
testcase_06 AC 25 ms
23,664 KB
testcase_07 AC 27 ms
23,400 KB
testcase_08 AC 26 ms
24,036 KB
testcase_09 AC 27 ms
24,384 KB
testcase_10 AC 26 ms
23,424 KB
testcase_11 AC 27 ms
23,640 KB
testcase_12 AC 26 ms
24,372 KB
testcase_13 AC 27 ms
24,288 KB
testcase_14 AC 27 ms
24,048 KB
testcase_15 AC 28 ms
23,856 KB
testcase_16 AC 28 ms
24,060 KB
testcase_17 AC 27 ms
23,820 KB
testcase_18 AC 25 ms
24,348 KB
testcase_19 AC 26 ms
24,036 KB
testcase_20 AC 24 ms
24,024 KB
testcase_21 AC 27 ms
24,012 KB
testcase_22 AC 27 ms
23,412 KB
testcase_23 AC 28 ms
23,520 KB
testcase_24 AC 28 ms
23,364 KB
testcase_25 AC 26 ms
23,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

   #include <bits/stdc++.h>
    using namespace std;
    #include <math.h>
    #include <iomanip>
    #include <cstdint>
    #include <string>
    #include <sstream>
    template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
    template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
    #define rep(i,n) for (int i = 0; i < (n); ++i)

    typedef long long ll;
    typedef unsigned long long ull;
    using P=pair<ll,ll>;
    const int INF=1001001001;
    const ll INFL=1e18;
    const int mod=998244353;

    int diff(int h,int n){
        return h-(n-h);
    }
    int query(int k){
        cout<<"?"<<" "<<k<<endl;
        int s;
        cin>>s;
        return s;
    }
    void out(int l,int r){
        cout<<"!"<<" "<<l<<" "<<r<<endl;
        exit(0);
    }
    
    void solve(){
        int n;
        cin>>n;
        int st=diff(query(1),1),lst=diff(query(n-1),n-1);
        if(st==lst){
            out(2,n-1);
        }
        int l=1,r=n-1;
        while(1){
            int mid=(l+r)/2;
            int c=query(mid);
            int d=diff(c,mid);
            if(d==0){
                if(mid<n/2){out(mid+1,n);}
                else{out(1,mid);}
            }
            if((d<0&&st<0)||(d>0&&st>0)){l=mid;}
            else{r=mid;}
        }
        
    }  

    int main(){
        ios_base::sync_with_stdio(false);
        cin.tie(NULL);
        
        solve(); 
        
        return 0;
    }
0