結果

問題 No.649 ここでちょっとQK!
ユーザー ミドリムシミドリムシ
提出日時 2018-02-09 23:06:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 293 ms / 3,000 ms
コード長 1,216 bytes
コンパイル時間 1,105 ms
コンパイル使用メモリ 76,920 KB
実行使用メモリ 5,916 KB
最終ジャッジ日時 2024-10-08 18:06:21
合計ジャッジ時間 6,027 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 293 ms
5,248 KB
testcase_04 AC 193 ms
5,916 KB
testcase_05 AC 191 ms
5,728 KB
testcase_06 AC 182 ms
5,556 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 106 ms
5,248 KB
testcase_13 AC 105 ms
5,248 KB
testcase_14 AC 102 ms
5,248 KB
testcase_15 AC 107 ms
5,248 KB
testcase_16 AC 97 ms
5,248 KB
testcase_17 AC 113 ms
5,248 KB
testcase_18 AC 124 ms
5,248 KB
testcase_19 AC 135 ms
5,248 KB
testcase_20 AC 147 ms
5,248 KB
testcase_21 AC 159 ms
5,248 KB
testcase_22 AC 169 ms
5,248 KB
testcase_23 AC 181 ms
5,248 KB
testcase_24 AC 190 ms
5,248 KB
testcase_25 AC 201 ms
5,248 KB
testcase_26 AC 214 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 72 ms
5,248 KB
testcase_31 AC 66 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
using namespace std;

int main(){
    int Q, K;
    cin >> Q >> K;
    priority_queue<long, vector<long>, less<long>> K_left;
    long Kth = -1;
    priority_queue<long, vector<long>, greater<long>> K_right;
    int array_size = 0;
    for(int i = 0; i < Q; i++){
        int type;
        cin >> type;
        if(type == 1){
            long num;
            cin >> num;
            array_size++;
            K_left.push(num);
            if(array_size == K){
                Kth = K_left.top();
                K_left.pop();
            }else if(array_size > K){
                K_right.push(Kth);
                K_right.push(K_left.top());
                K_left.pop();
                Kth = K_right.top();
                K_right.pop();
            }
        }else{
            if(array_size < K){
                cout << -1 << endl;
            }else{
                array_size--;
                cout << Kth << endl;
                if(array_size >= K){
                    Kth = K_right.top();
                    K_right.pop();
                }else{
                    Kth = -1;
                }
            }
        }
    }
}
0