結果

問題 No.649 ここでちょっとQK!
ユーザー Fu_LFu_L
提出日時 2023-05-31 10:39:41
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 207 ms / 3,000 ms
コード長 1,144 bytes
コンパイル時間 9,702 ms
コンパイル使用メモリ 289,172 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-12-28 13:35:09
合計ジャッジ時間 11,447 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 25 ms
5,248 KB
testcase_04 AC 181 ms
15,872 KB
testcase_05 AC 207 ms
15,872 KB
testcase_06 AC 184 ms
16,000 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 74 ms
8,320 KB
testcase_13 AC 72 ms
8,320 KB
testcase_14 AC 70 ms
8,320 KB
testcase_15 AC 78 ms
8,576 KB
testcase_16 AC 122 ms
8,960 KB
testcase_17 AC 125 ms
9,216 KB
testcase_18 AC 154 ms
9,728 KB
testcase_19 AC 170 ms
10,240 KB
testcase_20 AC 107 ms
10,752 KB
testcase_21 AC 118 ms
11,392 KB
testcase_22 AC 136 ms
11,776 KB
testcase_23 AC 135 ms
12,160 KB
testcase_24 AC 143 ms
12,800 KB
testcase_25 AC 160 ms
13,440 KB
testcase_26 AC 174 ms
13,696 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 62 ms
8,320 KB
testcase_31 AC 63 ms
8,832 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using P = pair<ll, ll>;
using mint = modint998244353;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/tag_and_trait.hpp>
using namespace __gnu_pbds;
// using Tree = tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update>; // set
using Tree = tree<ll, null_type, less_equal<ll>, rb_tree_tag, tree_order_statistics_node_update>;  // multiset
#define rep(i, a, b) for(ll i = a; i < b; i++)
#define rrep(i, a, b) for(ll i = a; i >= b; i--)
constexpr ll inf = 4e18;
int main(void) {
    cin.tie(0);
    ios::sync_with_stdio(0);
    ll q, k;
    cin >> q >> k;
    Tree st;
    while(q--) {
        ll t;
        cin >> t;
        if(t == 1) {
            ll v;
            cin >> v;
            st.insert(v);
        } else {
            auto itr = st.find_by_order(k - 1);
            if(itr == st.end()) {
                cout << -1 << '\n';
            } else {
                cout << *itr << '\n';
                st.erase(itr);
            }
        }
    }
}
0