結果

問題 No.649 ここでちょっとQK!
ユーザー Konton7Konton7
提出日時 2020-01-24 08:45:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 304 ms / 3,000 ms
コード長 1,247 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 206,080 KB
実行使用メモリ 5,988 KB
最終ジャッジ日時 2024-09-13 20:14:49
合計ジャッジ時間 6,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 304 ms
5,376 KB
testcase_04 AC 181 ms
5,916 KB
testcase_05 AC 168 ms
5,988 KB
testcase_06 AC 177 ms
5,704 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 95 ms
5,376 KB
testcase_13 AC 96 ms
5,376 KB
testcase_14 AC 93 ms
5,376 KB
testcase_15 AC 98 ms
5,376 KB
testcase_16 AC 96 ms
5,376 KB
testcase_17 AC 110 ms
5,376 KB
testcase_18 AC 120 ms
5,376 KB
testcase_19 AC 131 ms
5,376 KB
testcase_20 AC 140 ms
5,376 KB
testcase_21 AC 152 ms
5,376 KB
testcase_22 AC 161 ms
5,376 KB
testcase_23 AC 169 ms
5,376 KB
testcase_24 AC 181 ms
5,376 KB
testcase_25 AC 192 ms
5,376 KB
testcase_26 AC 201 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 60 ms
5,376 KB
testcase_31 AC 64 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep2(i, s, n) for (int i = (s); i < (int)(n); i++)
// #define DEBUG


int main()
{

#ifdef DEBUG
    cout << "DEBUG MODE" << endl;
    ifstream in("input.txt"); //for debug
    cin.rdbuf(in.rdbuf());    //for debug
#endif

    int q, t, k, x;
    ll y;
    cin >> q >> k;
    priority_queue<ll> p, r;
    rep(i, q){
        cin >> x;
        if (x == 1){
            cin >> y;
            if (p.size() < k)
                p.push(y);
            else{
                if (y > p.top())
                    r.push(-y);
                else
                {
                    r.push(-p.top());
                    p.pop();
                    p.push(y);
                }
                
            }
        }
        else
        {
            if (p.size() < k)
                cout << -1 << endl;
            else
            {
                cout << p.top() << endl;
                p.pop();
                
                if (!r.empty()){
                    p.push(-r.top());
                    r.pop();
                }
            }
            
        }
        
        

    };



    return 0;
}
0