結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 91 ms
6,944 KB
testcase_04 AC 157 ms
17,036 KB
testcase_05 AC 119 ms
14,876 KB
testcase_06 AC 145 ms
15,984 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 0 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 77 ms
7,440 KB
testcase_13 AC 76 ms
7,440 KB
testcase_14 AC 73 ms
7,524 KB
testcase_15 AC 78 ms
7,872 KB
testcase_16 AC 78 ms
8,068 KB
testcase_17 AC 90 ms
10,908 KB
testcase_18 AC 101 ms
11,460 KB
testcase_19 AC 108 ms
12,284 KB
testcase_20 AC 114 ms
13,228 KB
testcase_21 AC 126 ms
13,540 KB
testcase_22 AC 132 ms
14,540 KB
testcase_23 AC 152 ms
14,868 KB
testcase_24 AC 165 ms
14,800 KB
testcase_25 AC 177 ms
14,852 KB
testcase_26 AC 176 ms
14,732 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 63 ms
7,332 KB
testcase_31 AC 68 ms
7,648 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 1 ms
6,940 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;

void readV(T...)(ref T t){auto r=readln.splitter;foreach(ref v;t){v=r.front.to!(typeof(v));r.popFront;}}

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 = readln.splitter;
    switch (rd.front) {
    case "1":
      rd.popFront;
      auto v = rd.front.to!long;
      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