結果

問題 No.649 ここでちょっとQK!
ユーザー imulanimulan
提出日時 2018-03-14 00:58:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 64 ms / 3,000 ms
コード長 1,398 bytes
コンパイル時間 1,689 ms
コンパイル使用メモリ 171,472 KB
実行使用メモリ 6,044 KB
最終ジャッジ日時 2024-05-03 12:47:31
合計ジャッジ時間 5,031 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 34 ms
5,376 KB
testcase_04 AC 64 ms
6,044 KB
testcase_05 AC 52 ms
5,980 KB
testcase_06 AC 53 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 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 29 ms
5,376 KB
testcase_13 AC 29 ms
5,376 KB
testcase_14 AC 29 ms
5,376 KB
testcase_15 AC 31 ms
5,376 KB
testcase_16 AC 29 ms
5,376 KB
testcase_17 AC 36 ms
5,376 KB
testcase_18 AC 39 ms
5,376 KB
testcase_19 AC 44 ms
5,376 KB
testcase_20 AC 46 ms
5,376 KB
testcase_21 AC 49 ms
5,376 KB
testcase_22 AC 51 ms
5,376 KB
testcase_23 AC 55 ms
5,376 KB
testcase_24 AC 58 ms
5,376 KB
testcase_25 AC 63 ms
5,376 KB
testcase_26 AC 64 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 23 ms
5,376 KB
testcase_31 AC 26 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define fi first
#define se second
#define dbg(x) cout<<#x" = "<<((x))<<endl
template<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;}
template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;}

int main(){
    int Q,K;
    scanf(" %d %d", &Q, &K);

    priority_queue<ll> small;
    priority_queue<ll, vector<ll>, greater<ll>> large;

    while(Q--){
        int q;
        scanf(" %d", &q);
        if(q==1){
            ll v;
            scanf(" %lld", &v);
            if(small.size()<K) small.push(v);
            else{
                if(small.top()>v){
                    large.push(small.top());
                    small.pop();
                    small.push(v);
                }
                else large.push(v);
            }
        }
        else{
            ll ans = -1;
            if(small.size() == K){
                ans = small.top();
                small.pop();
                if(!large.empty()){
                    small.push(large.top());
                    large.pop();
                }
            }
            printf("%lld\n", ans);
        }
    }

    return 0;
}
0