結果

問題 No.2753 鳩の巣原理
ユーザー GOTKAKOGOTKAKO
提出日時 2024-05-10 22:01:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,283 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 210,920 KB
実行使用メモリ 25,452 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-05-10 22:01:28
合計ジャッジ時間 8,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 23 ms
24,580 KB
testcase_02 AC 21 ms
24,836 KB
testcase_03 AC 23 ms
24,836 KB
testcase_04 AC 23 ms
25,220 KB
testcase_05 AC 23 ms
24,964 KB
testcase_06 AC 24 ms
24,580 KB
testcase_07 AC 23 ms
24,964 KB
testcase_08 AC 21 ms
24,836 KB
testcase_09 AC 23 ms
24,556 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 22 ms
24,940 KB
testcase_17 AC 23 ms
24,556 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 21 ms
24,544 KB
testcase_21 AC 22 ms
25,196 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 23 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

long long mod = 998244353;
//入力が必ずmod未満の時に使う.
struct mint{
    long long v = 0;
    mint(){} mint(int a){v = a;} mint(long long a){v = a;} mint(unsigned long long a){v = a;}
    long long val(){return v;}
    void modu(){v %= mod;}
 
    mint repeat2mint(const long long a,long long b){
        mint ret = 1,p = a;
        while(b){
            if(b&1) ret *= p;
            p *= p; b >>= 1;
        }
        return ret;
    };
 
    mint operator+(const mint b){return mint(v)+=b;}
    mint operator-(const mint b){return mint(v)-=b;}
    mint operator*(const mint b){return mint(v)*=b;}
    mint operator/(const mint b){return mint(v)/=b;}
 
    mint operator+=(const mint b){
        v += b.v; if(v >= mod) v -= mod;
        return *this;
    }
    mint operator-=(const mint b){
        v -= b.v; if(v < 0) v += mod; 
        return *this;
    }   
    mint operator*=(const mint b){v = v*b.v%mod; return *this;}
    mint operator/=(mint b){
        if(b == 0) assert(false);
        int left = mod-2;
        while(left){if(left&1) *this *= b; b *= b; left >>= 1;}
        return *this;
    }
 
    mint operator++(int){*this += 1; return *this;}
    mint operator--(int){*this -= 1; return *this;}
    bool operator==(const mint b){return v == b.v;}
    bool operator!=(const mint b){return v != b.v;}
    bool operator>(const mint b){return v > b.v;}
    bool operator>=(const mint b){return v >= b.v;}
    bool operator<(const mint b){return v < b.v;}
    bool operator<=(const mint b){return v <= b.v;}
    
    mint pow(const long long x){return repeat2mint(v,x);}
    mint inv(){return mint(1)/v;}
};

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N; cin >> N;
    int low = 0,high = N;
    int turn = 0,L = 0,ans1,ans2;
    map<int,vector<int>> memo;
    while(turn < 10){
        int mid = (low+high)/2; turn++;
        cout << "? " << mid+1 << endl;
        int now; cin >> now;
        memo[now].push_back(mid+1);
        if(mid-low >= now-L) high = mid;
        else{low = mid,L = now;}
    }
    cout << "Yes ";
    for(auto[k,v] : memo){
        if(v.size() >= 2){
            cout << v.at(0) << " " << v.at(1) << endl;
            break;
        }
    } 
}
0