結果

問題 No.649 ここでちょっとQK!
ユーザー te-shte-sh
提出日時 2018-04-19 15:36:22
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 194 ms / 3,000 ms
コード長 1,071 bytes
コンパイル時間 1,631 ms
コンパイル使用メモリ 156,024 KB
実行使用メモリ 17,672 KB
最終ジャッジ日時 2024-06-13 00:41:52
合計ジャッジ時間 5,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 91 ms
6,944 KB
testcase_04 AC 164 ms
17,672 KB
testcase_05 AC 133 ms
14,868 KB
testcase_06 AC 167 ms
17,628 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 79 ms
7,496 KB
testcase_13 AC 76 ms
7,488 KB
testcase_14 AC 80 ms
7,468 KB
testcase_15 AC 84 ms
7,824 KB
testcase_16 AC 79 ms
9,836 KB
testcase_17 AC 96 ms
10,676 KB
testcase_18 AC 106 ms
11,344 KB
testcase_19 AC 113 ms
12,504 KB
testcase_20 AC 126 ms
13,140 KB
testcase_21 AC 134 ms
13,540 KB
testcase_22 AC 141 ms
14,520 KB
testcase_23 AC 155 ms
14,872 KB
testcase_24 AC 171 ms
14,836 KB
testcase_25 AC 181 ms
14,872 KB
testcase_26 AC 194 ms
14,740 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 66 ms
7,460 KB
testcase_31 AC 76 ms
7,760 KB
testcase_32 AC 1 ms
6,944 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 #

import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string;

auto rdsp(){return readln.splitter;}
void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;}
void readV(T...)(ref T t){auto r=rdsp;foreach(ref v;t)pick(r,v);}

void main()
{
  int q, k; readV(q, k);

  auto rb1 = redBlackTree!("a>b", true, long)(), rb2 = redBlackTree!("a<b", true, long)();
  foreach (_; 0..q) {
    auto rd = rdsp;
    string typ; pick(rd, typ);
    switch (typ) {
    case "1":
      long v; pick(rd, v);
      if (rb1.length < k) {
        rb1.insert(v);
      } else if (rb1.front < v) {
        rb2.insert(v);
      } else {
        auto u = rb1.front; rb1.removeFront;
        rb1.insert(v);
        rb2.insert(u);
      }
      break;
    case "2":
      if (rb1.length < k) {
        writeln(-1);
      } else {
        writeln(rb1.front);
        rb1.removeFront;
        if (!rb2.empty) {
          auto u = rb2.front; rb2.removeFront;
          rb1.insert(u);
        }
      }
      break;
    default:
      assert(0);
    }
  }
}
0