結果

問題 No.702 中央値を求めよ LIMITED
ユーザー ikdikd
提出日時 2018-06-15 23:39:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 622 ms / 5,000 ms
コード長 681 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 62,636 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 09:20:40
合計ジャッジ時間 18,728 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 619 ms
5,248 KB
testcase_01 AC 621 ms
5,376 KB
testcase_02 AC 621 ms
5,376 KB
testcase_03 AC 620 ms
5,376 KB
testcase_04 AC 620 ms
5,376 KB
testcase_05 AC 622 ms
5,376 KB
testcase_06 AC 620 ms
5,376 KB
testcase_07 AC 620 ms
5,376 KB
testcase_08 AC 621 ms
5,376 KB
testcase_09 AC 620 ms
5,376 KB
testcase_10 AC 621 ms
5,376 KB
testcase_11 AC 621 ms
5,376 KB
testcase_12 AC 620 ms
5,376 KB
testcase_13 AC 619 ms
5,376 KB
testcase_14 AC 618 ms
5,376 KB
testcase_15 AC 619 ms
5,376 KB
testcase_16 AC 620 ms
5,376 KB
testcase_17 AC 619 ms
5,376 KB
testcase_18 AC 621 ms
5,376 KB
testcase_19 AC 619 ms
5,376 KB
testcase_20 AC 619 ms
5,376 KB
testcase_21 AC 618 ms
5,376 KB
testcase_22 AC 620 ms
5,376 KB
testcase_23 AC 618 ms
5,376 KB
testcase_24 AC 620 ms
5,376 KB
testcase_25 AC 621 ms
5,376 KB
testcase_26 AC 619 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<set>
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)

uint32_t x = 0, y = 1, z = 2, w = 3;
uint32_t generate() { 
    uint32_t t = (x^(x<<11));
    x = y;
    y = z;
    z = w;
    w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)); 
    return w;
}

int main(void) {
    uint32_t seed; cin >> seed; 
    x = seed;
    int n=10000001;

    long long yes=0, no=4294967296;
    while(no-yes>1){
      auto m=(yes+no)/2;
      x=seed; y=1; z=2; w=3;
      int cnt=0;
      rep(_, n){
        auto a=generate();
        if(a<m) cnt++;
      }
      (cnt<=n/2 ? yes : no) = m;
    }

    cout<< yes<< endl;
    return 0;
}
0