結果

問題 No.649 ここでちょっとQK!
ユーザー ikdikd
提出日時 2018-02-12 17:32:28
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 206 ms / 3,000 ms
コード長 896 bytes
コンパイル時間 904 ms
コンパイル使用メモリ 120,016 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 23:53:08
合計ジャッジ時間 5,294 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 170 ms
6,944 KB
testcase_04 AC 206 ms
6,944 KB
testcase_05 AC 177 ms
6,940 KB
testcase_06 AC 175 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 99 ms
6,940 KB
testcase_13 AC 94 ms
6,944 KB
testcase_14 AC 91 ms
6,944 KB
testcase_15 AC 99 ms
6,940 KB
testcase_16 AC 95 ms
6,940 KB
testcase_17 AC 113 ms
6,940 KB
testcase_18 AC 123 ms
6,944 KB
testcase_19 AC 132 ms
6,940 KB
testcase_20 AC 147 ms
6,944 KB
testcase_21 AC 159 ms
6,940 KB
testcase_22 AC 163 ms
6,944 KB
testcase_23 AC 176 ms
6,940 KB
testcase_24 AC 180 ms
6,940 KB
testcase_25 AC 185 ms
6,944 KB
testcase_26 AC 200 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 77 ms
6,944 KB
testcase_31 AC 85 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void main(){
  import std.stdio, std.string, std.conv, std.algorithm;
  import std.container;

  int q, k; rd(q, k);
  auto qmax=new BinaryHeap!(Array!(long))(),
       qmin=new BinaryHeap!(Array!(long), "a>b")();
  while(q--){
    auto args=readln.split.to!(long[]);
    if(args[0]==1){
      auto v=args[1];
      if(qmax.length<k) qmax.insert(v);
      else if(qmax.front<=v) qmin.insert(v);
      else{qmin.insert(qmax.front); qmax.popFront; qmax.insert(v);}
    }else{
      if(qmax.length>=k){
        writeln(qmax.front);
        qmax.popFront;
        if(qmax.length<k && qmin.length>0){
          qmax.insert(qmin.front);
          qmin.popFront;
        }
      }else{
        writeln(-1);
      }
    }
  }
}

void rd(T...)(ref T x){
  import std.stdio, std.string, std.conv;
  auto l=readln.split;
  assert(l.length==x.length);
  foreach(i, ref e; x){
    e=l[i].to!(typeof(e));
  }
}
0