結果

問題 No.649 ここでちょっとQK!
ユーザー MisterMister
提出日時 2020-08-18 11:22:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 3,000 ms
コード長 1,007 bytes
コンパイル時間 896 ms
コンパイル使用メモリ 75,944 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-10-12 02:33:12
合計ジャッジ時間 7,060 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 27 ms
6,816 KB
testcase_04 AC 147 ms
12,928 KB
testcase_05 AC 154 ms
12,800 KB
testcase_06 AC 137 ms
12,800 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 60 ms
7,168 KB
testcase_13 AC 58 ms
7,296 KB
testcase_14 AC 55 ms
7,168 KB
testcase_15 AC 63 ms
7,296 KB
testcase_16 AC 55 ms
7,680 KB
testcase_17 AC 70 ms
7,936 KB
testcase_18 AC 77 ms
8,192 KB
testcase_19 AC 90 ms
8,576 KB
testcase_20 AC 95 ms
8,960 KB
testcase_21 AC 115 ms
9,216 KB
testcase_22 AC 128 ms
9,728 KB
testcase_23 AC 140 ms
9,984 KB
testcase_24 AC 145 ms
10,496 KB
testcase_25 AC 163 ms
10,880 KB
testcase_26 AC 171 ms
11,264 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 3 ms
6,816 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 51 ms
7,296 KB
testcase_31 AC 56 ms
7,552 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>

using lint = long long;

void solve() {
    int q, k;
    std::cin >> q >> k;

    std::multiset<lint> big, small;
    auto insert = [&](lint x) {
        big.insert(x);
        if ((int)big.size() >= k) {
            lint y = *big.rbegin();
            big.erase(big.find(y));
            small.insert(y);
        }
    };

    while (q--) {
        int t;
        std::cin >> t;

        switch (t) {
            case 1: {
                lint x;
                std::cin >> x;
                insert(x);
                break;
            }

            case 2: {
                if (small.empty()) {
                    std::cout << -1 << "\n";
                } else {
                    auto x = *small.begin();
                    small.erase(small.find(x));
                    std::cout << x << "\n";
                }
            }
        }
    }
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0