結果

問題 No.649 ここでちょっとQK!
ユーザー noriocnorioc
提出日時 2018-02-10 20:15:51
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 93 ms / 3,000 ms
コード長 1,135 bytes
コンパイル時間 850 ms
コンパイル使用メモリ 126,268 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 23:51:53
合計ジャッジ時間 3,770 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 79 ms
6,940 KB
testcase_04 AC 79 ms
6,940 KB
testcase_05 AC 75 ms
6,940 KB
testcase_06 AC 63 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,940 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 47 ms
6,944 KB
testcase_13 AC 46 ms
6,940 KB
testcase_14 AC 45 ms
6,944 KB
testcase_15 AC 51 ms
6,940 KB
testcase_16 AC 35 ms
6,944 KB
testcase_17 AC 47 ms
6,944 KB
testcase_18 AC 50 ms
6,944 KB
testcase_19 AC 57 ms
6,944 KB
testcase_20 AC 60 ms
6,944 KB
testcase_21 AC 71 ms
6,940 KB
testcase_22 AC 76 ms
6,940 KB
testcase_23 AC 81 ms
6,944 KB
testcase_24 AC 85 ms
6,940 KB
testcase_25 AC 89 ms
6,944 KB
testcase_26 AC 93 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 41 ms
6,944 KB
testcase_31 AC 37 ms
6,940 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;
import std.array;
import std.container;
import std.conv;
import std.math;
import std.range;
import std.stdio;
import std.string;
import std.typecons;

T read(T)() { return readln.chomp.to!T; }
T[] reads(T)() { return readln.split.to!(T[]); }
alias readint = read!int;
alias readints = reads!int;

void main() {
    auto qk = readints;
    int q = qk[0], k = qk[1];

    auto q1 = new BinaryHeap!(Array!long, "a < b");
    auto q2 = new BinaryHeap!(Array!long, "a > b");
    for (int i = 0; i < q; i++) {
        string s = readln;
        // auto xs = reads!long;
        if (s[0] == '1') {
            long x = s[2..$-1].to!long;
            q1.insert(x);
            if (q1.length > k) {
                q2.insert(q1.front);
                q1.popFront;
            }
        }
        else {
            if (q1.length < k) {
                writeln(-1);
            }
            else {
                writeln(q1.front);
                q1.popFront;
                if (q2.length > 0) {
                    q1.insert(q2.front);
                    q2.popFront;
                }
            }
        }
   }
}
0