結果

問題 No.649 ここでちょっとQK!
ユーザー squidsquid
提出日時 2018-02-09 23:55:59
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 684 bytes
コンパイル時間 1,325 ms
コンパイル使用メモリ 161,632 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2024-10-09 06:10:51
合計ジャッジ時間 9,165 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 296 ms
6,820 KB
testcase_04 AC 222 ms
12,672 KB
testcase_05 AC 223 ms
12,544 KB
testcase_06 AC 228 ms
12,800 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 140 ms
7,168 KB
testcase_13 AC 128 ms
7,040 KB
testcase_14 AC 130 ms
7,168 KB
testcase_15 AC 918 ms
7,168 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//constant
const long long int inf = 1<<30;
const int N = 1e5+1;
const int M = 1e5+1;

//variable
int q,k;
multiset<long long int> data;

//function


int main()
{
    cin>>q>>k;
    for(int i=0; i<q; i++){
        int que;
        cin>>que;
        if(que==1){
            long long int v;
            cin>>v;
            data.insert(v);
        }
        if(que==2){
            if(data.size()<k){
                cout<<-1<<endl;
                continue;
            }
            auto it=data.begin();
            for(int i=0; i<k-1; i++)it++;
            cout<<*it<<endl;
            data.erase(it);
        }
    }

    return 0;
}
0