結果

問題 No.649 ここでちょっとQK!
ユーザー face4face4
提出日時 2018-11-18 19:37:56
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 183 ms / 3,000 ms
コード長 791 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 69,536 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-12-24 15:06:18
合計ジャッジ時間 6,003 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 26 ms
5,248 KB
testcase_04 AC 129 ms
12,928 KB
testcase_05 AC 118 ms
12,928 KB
testcase_06 AC 120 ms
12,928 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 3 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 66 ms
7,552 KB
testcase_13 AC 71 ms
7,424 KB
testcase_14 AC 63 ms
7,296 KB
testcase_15 AC 77 ms
7,424 KB
testcase_16 AC 63 ms
7,808 KB
testcase_17 AC 83 ms
8,064 KB
testcase_18 AC 87 ms
8,448 KB
testcase_19 AC 107 ms
8,704 KB
testcase_20 AC 117 ms
9,216 KB
testcase_21 AC 118 ms
9,472 KB
testcase_22 AC 127 ms
9,856 KB
testcase_23 AC 149 ms
10,368 KB
testcase_24 AC 152 ms
10,752 KB
testcase_25 AC 167 ms
11,008 KB
testcase_26 AC 183 ms
11,520 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 61 ms
7,296 KB
testcase_31 AC 71 ms
7,680 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<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