結果

問題 No.649 ここでちょっとQK!
ユーザー lorent_kyoprolorent_kyopro
提出日時 2020-12-19 19:37:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 339 ms / 3,000 ms
コード長 730 bytes
コンパイル時間 4,155 ms
コンパイル使用メモリ 232,828 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-09-21 10:33:58
合計ジャッジ時間 11,791 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 302 ms
6,940 KB
testcase_04 AC 282 ms
16,000 KB
testcase_05 AC 279 ms
16,000 KB
testcase_06 AC 293 ms
16,000 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 148 ms
8,448 KB
testcase_13 AC 147 ms
8,448 KB
testcase_14 AC 144 ms
8,576 KB
testcase_15 AC 150 ms
8,704 KB
testcase_16 AC 147 ms
8,960 KB
testcase_17 AC 162 ms
9,344 KB
testcase_18 AC 185 ms
9,856 KB
testcase_19 AC 196 ms
10,368 KB
testcase_20 AC 215 ms
10,880 KB
testcase_21 AC 245 ms
11,392 KB
testcase_22 AC 255 ms
12,032 KB
testcase_23 AC 275 ms
12,288 KB
testcase_24 AC 299 ms
12,928 KB
testcase_25 AC 314 ms
13,312 KB
testcase_26 AC 339 ms
13,824 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 109 ms
8,576 KB
testcase_31 AC 112 ms
8,832 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template<typename T>
using ordered_multiset = tree<T, null_type, less_equal<T>, rb_tree_tag, tree_order_statistics_node_update>;

int main() {
    int q, k;
    cin >> q >> k;
    ordered_multiset<long long> s;
    while (q--) {
        int t;
        cin >> t;
        if (t == 1) {
            long long v;
            cin >> v;
            s.insert(v);
        } else {
            if ((int)s.size() < k) {
                cout << -1 << '\n';
            } else {
                auto it = s.find_by_order(k - 1);
                cout << *it << '\n';
                s.erase(it);
            }
        }
    }
}
0