結果

問題 No.649 ここでちょっとQK!
ユーザー arukukaarukuka
提出日時 2018-02-11 15:22:45
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 282 ms / 3,000 ms
コード長 1,012 bytes
コンパイル時間 1,760 ms
コンパイル使用メモリ 155,280 KB
実行使用メモリ 25,424 KB
最終ジャッジ日時 2024-06-12 23:52:45
合計ジャッジ時間 7,339 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 121 ms
6,940 KB
testcase_04 AC 257 ms
25,408 KB
testcase_05 AC 259 ms
25,412 KB
testcase_06 AC 236 ms
24,400 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 137 ms
14,828 KB
testcase_13 AC 133 ms
14,892 KB
testcase_14 AC 135 ms
14,828 KB
testcase_15 AC 148 ms
14,892 KB
testcase_16 AC 121 ms
14,408 KB
testcase_17 AC 148 ms
14,876 KB
testcase_18 AC 158 ms
14,732 KB
testcase_19 AC 181 ms
14,800 KB
testcase_20 AC 202 ms
14,736 KB
testcase_21 AC 224 ms
14,852 KB
testcase_22 AC 227 ms
18,060 KB
testcase_23 AC 254 ms
20,604 KB
testcase_24 AC 252 ms
22,624 KB
testcase_25 AC 262 ms
24,976 KB
testcase_26 AC 282 ms
25,424 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 113 ms
14,848 KB
testcase_31 AC 101 ms
14,740 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.range;
import std.array;
import std.string;
import std.conv;
import std.typecons;
import std.algorithm;
import std.container;

void main()
{
  auto val = readln.chomp.split.map!(to!int);
  int q = val.front;
  int k = val.back;
  alias TreeOne = RedBlackTree!(ulong, "a < b", true);
  TreeOne treeLeft = new TreeOne();
  TreeOne treeRight = new TreeOne();
  foreach (i; 0..q) {
    auto wal = readln.chomp.split.map!(to!ulong);
    if (wal.front == 1) {
      auto trg = wal.back;
      treeLeft.insert(trg);
      if (treeLeft.length > k) {
        auto dst = treeLeft.back;
        treeLeft.removeKey = dst;
        treeRight.insert(dst);
      }
    } else {
      auto l = treeLeft.length;
      if (l < k) {
        writeln = -1;
        continue;
      }
      auto v = treeLeft.back;
      treeLeft.removeKey = v;
      if (treeRight.length) {
        auto w = treeRight.front;
        treeRight.removeKey = w;
        treeLeft.insert(w);
      }
      v.writeln;
    }
  }
}
0