結果

問題 No.649 ここでちょっとQK!
ユーザー lorent_kyoprolorent_kyopro
提出日時 2020-12-20 23:27:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 284 ms / 3,000 ms
コード長 755 bytes
コンパイル時間 3,908 ms
コンパイル使用メモリ 232,548 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-09-21 12:25:26
合計ジャッジ時間 11,174 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 273 ms
6,940 KB
testcase_04 AC 272 ms
16,000 KB
testcase_05 AC 266 ms
16,000 KB
testcase_06 AC 284 ms
16,000 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 131 ms
8,448 KB
testcase_13 AC 130 ms
8,448 KB
testcase_14 AC 131 ms
8,448 KB
testcase_15 AC 130 ms
8,576 KB
testcase_16 AC 133 ms
9,088 KB
testcase_17 AC 149 ms
9,344 KB
testcase_18 AC 161 ms
9,728 KB
testcase_19 AC 178 ms
10,368 KB
testcase_20 AC 183 ms
10,880 KB
testcase_21 AC 202 ms
11,520 KB
testcase_22 AC 218 ms
11,904 KB
testcase_23 AC 239 ms
12,416 KB
testcase_24 AC 245 ms
12,800 KB
testcase_25 AC 266 ms
13,312 KB
testcase_26 AC 279 ms
13,824 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 94 ms
8,320 KB
testcase_31 AC 101 ms
8,832 KB
testcase_32 AC 2 ms
6,948 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 1 ms
6,944 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_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

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