結果

問題 No.649 ここでちょっとQK!
ユーザー ikdikd
提出日時 2018-02-12 17:36:22
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 405 ms / 3,000 ms
コード長 1,010 bytes
コンパイル時間 1,714 ms
コンパイル使用メモリ 154,956 KB
実行使用メモリ 25,492 KB
最終ジャッジ日時 2024-06-12 23:53:18
合計ジャッジ時間 7,675 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 162 ms
6,940 KB
testcase_04 AC 271 ms
25,352 KB
testcase_05 AC 233 ms
25,492 KB
testcase_06 AC 269 ms
25,408 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 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 146 ms
14,860 KB
testcase_13 AC 145 ms
14,764 KB
testcase_14 AC 161 ms
14,924 KB
testcase_15 AC 140 ms
14,872 KB
testcase_16 AC 144 ms
14,900 KB
testcase_17 AC 162 ms
14,824 KB
testcase_18 AC 180 ms
14,908 KB
testcase_19 AC 190 ms
14,904 KB
testcase_20 AC 236 ms
14,732 KB
testcase_21 AC 218 ms
14,888 KB
testcase_22 AC 245 ms
15,740 KB
testcase_23 AC 252 ms
14,896 KB
testcase_24 AC 273 ms
22,856 KB
testcase_25 AC 367 ms
25,452 KB
testcase_26 AC 405 ms
25,408 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 138 ms
14,576 KB
testcase_31 AC 151 ms
14,892 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,944 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")();
  auto qmax=new RedBlackTree!(long, "a>b", true),
       qmin=new RedBlackTree!(long, "a<b", true);
  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.removeFront; qmax.insert(v);}
    }else{
      if(qmax.length>=k){
        writeln(qmax.front);
        qmax.removeFront;
        if(qmax.length<k && qmin.length>0){
          qmax.insert(qmin.front);
          qmin.removeFront;
        }
      }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