結果

問題 No.649 ここでちょっとQK!
ユーザー ts_ts_
提出日時 2018-04-06 23:40:20
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 814 bytes
コンパイル時間 1,261 ms
コンパイル使用メモリ 166,396 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 10:52:00
合計ジャッジ時間 5,573 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 265 ms
6,940 KB
testcase_04 AC 65 ms
6,944 KB
testcase_05 AC 51 ms
6,940 KB
testcase_06 AC 51 ms
6,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 40 ms
6,940 KB
testcase_13 AC 40 ms
6,940 KB
testcase_14 AC 40 ms
6,940 KB
testcase_15 AC 40 ms
6,944 KB
testcase_16 AC 40 ms
6,940 KB
testcase_17 AC 47 ms
6,940 KB
testcase_18 AC 52 ms
6,940 KB
testcase_19 AC 55 ms
6,944 KB
testcase_20 AC 60 ms
6,944 KB
testcase_21 AC 66 ms
6,944 KB
testcase_22 AC 70 ms
6,944 KB
testcase_23 AC 75 ms
6,944 KB
testcase_24 AC 81 ms
6,944 KB
testcase_25 AC 86 ms
6,944 KB
testcase_26 AC 89 ms
6,940 KB
testcase_27 WA -
testcase_28 AC 2 ms
6,944 KB
testcase_29 WA -
testcase_30 AC 31 ms
6,940 KB
testcase_31 WA -
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define rep(i,n)   FOR(i,0,n)
#define pb emplace_back
typedef long long ll;
typedef pair<int,int> pint;

int main(){
    ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
    int q,k;
    ll v;
    cin>>q>>k;
    priority_queue<ll> pq1;
    priority_queue<ll,vector<ll>,greater<ll> > pq2;
    rep(i,q){
        cin>>v;
        if(v==1){
            cin>>v;
            if(pq1.size()<k-1) pq1.push(v);
            else{
                ll t=v;
                if(!pq1.empty()&&pq1.top()>v) t=pq1.top(),pq1.pop(),pq1.push(v); 
                pq2.push(t);
            }
        }
        if(v==2){
            if(!pq2.empty()) cout<<pq2.top()<<endl,pq2.pop();
            else cout<<-1<<endl;
        }
    }
    return 0;
}
0