結果

問題 No.702 中央値を求めよ LIMITED
ユーザー 👑 NachiaNachia
提出日時 2020-10-08 17:57:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,211 ms / 5,000 ms
コード長 862 bytes
コンパイル時間 1,449 ms
コンパイル使用メモリ 166,680 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-05-02 10:05:32
合計ジャッジ時間 34,158 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,142 ms
23,040 KB
testcase_01 AC 1,211 ms
22,912 KB
testcase_02 AC 1,137 ms
23,040 KB
testcase_03 AC 1,154 ms
22,912 KB
testcase_04 AC 1,106 ms
23,168 KB
testcase_05 AC 1,172 ms
23,040 KB
testcase_06 AC 1,174 ms
23,040 KB
testcase_07 AC 1,125 ms
23,040 KB
testcase_08 AC 1,154 ms
23,040 KB
testcase_09 AC 1,150 ms
22,912 KB
testcase_10 AC 1,121 ms
23,040 KB
testcase_11 AC 1,120 ms
22,912 KB
testcase_12 AC 1,133 ms
22,912 KB
testcase_13 AC 1,139 ms
22,912 KB
testcase_14 AC 1,133 ms
23,040 KB
testcase_15 AC 1,132 ms
23,040 KB
testcase_16 AC 1,143 ms
23,040 KB
testcase_17 AC 1,163 ms
23,168 KB
testcase_18 AC 1,111 ms
22,912 KB
testcase_19 AC 1,122 ms
23,040 KB
testcase_20 AC 1,123 ms
23,040 KB
testcase_21 AC 1,129 ms
23,040 KB
testcase_22 AC 1,132 ms
22,912 KB
testcase_23 AC 1,138 ms
23,040 KB
testcase_24 AC 1,139 ms
23,040 KB
testcase_25 AC 1,127 ms
22,912 KB
testcase_26 AC 1,130 ms
23,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using UL = unsigned int;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

UL x=0,y=1,z=2,w=3;

UL generate(){
 UL t=(x^(x<<11));
 x=y; y=z; z=w;
 w=(w^(w>>19))^(t^(t>>8));
 return w;
}

UL G[5000002]; UL p=0;

void push(UL v){
 G[p++]=v;
 UL i=p-1;
 while(i!=0){
  UL to=(i-1)/2;
  if(G[to]>=G[i]) return;
  swap(G[to],G[i]);
  i=to;
 }
}
UL top(){ return G[0]; }
void pop(){
 swap(G[0],G[--p]);
 int i=0;
 while(true){
  UL to1=i*2+1,to2=i*2+2;
  UL to=p;
  if(to2<p){
   if(G[i]<max(G[to1],G[to2]))
    to=(G[to1]>G[to2])?to1:to2;
  }
  else if(to1<p){
   if(G[i]<G[to1]) to=to1;
  }
  if(to==p) return;
  swap(G[i],G[to]);
  i=to;
 }
}

int main() {
 cin>>x;
 rep(i,5000001) push(generate());
 rep(i,5000000) push(generate()),pop();
 cout<<top()<<endl;
 return 0;
}
0