結果

問題 No.702 中央値を求めよ LIMITED
ユーザー mamumamura1mamumamura1
提出日時 2018-06-16 12:39:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 978 bytes
コンパイル時間 1,619 ms
コンパイル使用メモリ 170,500 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-07 19:54:10
合計ジャッジ時間 63,019 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,214 ms
5,248 KB
testcase_01 AC 1,952 ms
5,248 KB
testcase_02 AC 2,158 ms
5,376 KB
testcase_03 AC 2,087 ms
5,376 KB
testcase_04 AC 2,207 ms
5,376 KB
testcase_05 AC 2,216 ms
5,376 KB
testcase_06 AC 2,023 ms
5,376 KB
testcase_07 AC 2,020 ms
5,376 KB
testcase_08 AC 2,165 ms
5,376 KB
testcase_09 AC 2,235 ms
5,376 KB
testcase_10 AC 2,101 ms
5,376 KB
testcase_11 AC 1,955 ms
5,376 KB
testcase_12 AC 2,242 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 2,233 ms
5,376 KB
testcase_15 AC 2,232 ms
5,376 KB
testcase_16 AC 1,950 ms
5,376 KB
testcase_17 AC 2,141 ms
5,376 KB
testcase_18 AC 2,160 ms
5,376 KB
testcase_19 AC 2,213 ms
5,376 KB
testcase_20 AC 2,232 ms
5,376 KB
testcase_21 AC 2,209 ms
5,376 KB
testcase_22 AC 2,076 ms
5,376 KB
testcase_23 AC 2,215 ms
5,376 KB
testcase_24 AC 2,215 ms
5,376 KB
testcase_25 AC 2,236 ms
5,376 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

#define INF 1e9
#define llINF 1e18
#define MOD 1e9+7
#define pb push_back
#define mp make_pair 
#define F first
#define S second
#define ll long long
using namespace std;
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(){
  uint32_t seed;
  cin>>seed;
  x=seed;
  deque<uint32_t>a;
  ll left=0,right=pow(2,32);
  ll mid=0;
  while(right-left>1){
    //  cout<<left<<" "<<right<<endl;
    mid=(left+right)/2;
    x=seed;y=1;z=2;w=3;
    int cnt=0;
    int cnt2=0;
    for(int i=0;i<10000001;i++){
      ll num=generate();
      if(mid<num)
	cnt++;
      else if(mid>num)
	cnt2++;
    }
    if(cnt==5000000&&cnt2==5000000){cout<<mid<<endl;break;}
    else if(cnt<5000000){
      right=mid;
    }else if(cnt>5000000){
      left=mid;
    }else if(cnt==5000000){
      right=mid;
    }
  }
  //cout<<mid<<endl;
  return 0;
}
0