結果

問題 No.649 ここでちょっとQK!
ユーザー nebukuro09nebukuro09
提出日時 2018-02-09 22:45:17
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 175 ms / 3,000 ms
コード長 1,216 bytes
コンパイル時間 917 ms
コンパイル使用メモリ 133,588 KB
実行使用メモリ 8,928 KB
最終ジャッジ日時 2024-06-12 23:49:29
合計ジャッジ時間 6,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 132 ms
6,940 KB
testcase_04 AC 175 ms
8,864 KB
testcase_05 AC 141 ms
8,876 KB
testcase_06 AC 141 ms
8,928 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,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 79 ms
6,948 KB
testcase_13 AC 74 ms
6,940 KB
testcase_14 AC 74 ms
6,944 KB
testcase_15 AC 82 ms
6,940 KB
testcase_16 AC 77 ms
6,944 KB
testcase_17 AC 91 ms
6,940 KB
testcase_18 AC 101 ms
8,180 KB
testcase_19 AC 109 ms
7,292 KB
testcase_20 AC 121 ms
6,940 KB
testcase_21 AC 130 ms
8,424 KB
testcase_22 AC 137 ms
8,444 KB
testcase_23 AC 146 ms
6,940 KB
testcase_24 AC 152 ms
8,576 KB
testcase_25 AC 155 ms
6,944 KB
testcase_26 AC 170 ms
8,596 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 61 ms
6,944 KB
testcase_31 AC 66 ms
6,944 KB
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, std.bitmanip;

immutable long MOD = 10^^9 + 7;


void main() {
    auto s = readln.split.map!(to!int);
    auto Q = s[0];
    auto K = s[1];
    auto small = new BinaryHeap!(Array!long, "a < b");
    auto large = new BinaryHeap!(Array!long, "a > b");

    while (Q--) {
        auto q = readln.split.map!(to!long);
        auto t = q[0];
        if (t == 1) {
            auto v = q[1];
            if (small.length < K) {
                small.insert(v);
            } else if (small.front > v) {
                auto w = small.front;
                small.removeFront;
                small.insert(v);
                large.insert(w);
            } else {
                large.insert(v);
            }
        } else {
            if (small.length < K) {
                writeln(-1);
                continue;
            }
            small.front.writeln;
            small.removeFront;
            if (large.length > 0) {
                small.insert(large.front);
                large.removeFront;
            }
        }
    }
}
0