結果

問題 No.649 ここでちょっとQK!
ユーザー face4face4
提出日時 2018-11-18 19:37:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 108 ms / 3,000 ms
コード長 791 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 70,660 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-06 20:54:45
合計ジャッジ時間 5,157 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 22 ms
6,940 KB
testcase_04 AC 101 ms
12,928 KB
testcase_05 AC 95 ms
12,928 KB
testcase_06 AC 95 ms
12,928 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 50 ms
7,296 KB
testcase_13 AC 50 ms
7,424 KB
testcase_14 AC 46 ms
7,424 KB
testcase_15 AC 49 ms
7,424 KB
testcase_16 AC 48 ms
7,936 KB
testcase_17 AC 54 ms
8,192 KB
testcase_18 AC 60 ms
8,576 KB
testcase_19 AC 65 ms
8,704 KB
testcase_20 AC 71 ms
9,216 KB
testcase_21 AC 75 ms
9,472 KB
testcase_22 AC 83 ms
9,856 KB
testcase_23 AC 87 ms
10,240 KB
testcase_24 AC 100 ms
10,752 KB
testcase_25 AC 108 ms
11,136 KB
testcase_26 AC 106 ms
11,392 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 42 ms
7,296 KB
testcase_31 AC 45 ms
7,680 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
using namespace std;
typedef long long ll;

int main(){
    int q, k;
    scanf("%d %d", &q, &k);

    multiset<ll> s;
    multiset<ll>::iterator it = s.begin();

    int op;
    ll val;
    int siz = 0;

    for(int i = 0; i < q; i++){
        scanf("%d", &op);
        if(op == 1){
            scanf("%lld", &val);
            s.insert(val);
            siz++;
            if(siz == k){
                it = s.end();
                it--;
            }else if((*it) > val){
                it--;
            }
        }else if(op == 2){
            if(siz >= k){
                printf("%lld\n", *it);
                it = s.erase(it);
                siz--;
            }else{
                printf("-1\n");
            }
        }
    }

    return 0;
}
0