結果

問題 No.649 ここでちょっとQK!
ユーザー AquaplusAquaplus
提出日時 2018-02-10 16:37:36
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 289 ms / 3,000 ms
コード長 1,346 bytes
コンパイル時間 831 ms
コンパイル使用メモリ 81,580 KB
実行使用メモリ 8,252 KB
最終ジャッジ日時 2024-10-14 15:16:00
合計ジャッジ時間 7,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 289 ms
6,816 KB
testcase_04 AC 182 ms
8,252 KB
testcase_05 AC 171 ms
8,200 KB
testcase_06 AC 175 ms
7,924 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 95 ms
6,816 KB
testcase_13 AC 95 ms
6,816 KB
testcase_14 AC 93 ms
6,820 KB
testcase_15 AC 99 ms
6,816 KB
testcase_16 AC 96 ms
6,816 KB
testcase_17 AC 108 ms
6,820 KB
testcase_18 AC 119 ms
6,820 KB
testcase_19 AC 129 ms
6,820 KB
testcase_20 AC 138 ms
6,820 KB
testcase_21 AC 149 ms
6,816 KB
testcase_22 AC 159 ms
6,816 KB
testcase_23 AC 168 ms
6,828 KB
testcase_24 AC 179 ms
6,972 KB
testcase_25 AC 188 ms
7,100 KB
testcase_26 AC 197 ms
7,184 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 3 ms
6,816 KB
testcase_30 AC 60 ms
6,820 KB
testcase_31 AC 63 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <algorithm>
#include <math.h>
#include <vector>
#include <queue>
using namespace std;

int main(void)
{
    int q, k;
    cin >> q >> k;
    int a[q];
    long long b[q];

    for (int i = 0; i < q; i++)
    {
        cin >> a[i];
        if (a[i] == 1)
            cin >> b[i];
        else
            b[i] = -1;
    }

    priority_queue<long long> q1;
    priority_queue<long long, vector<long long>, greater<long long> > q2;
    for (int i = 0; i < q; i++)
    {
        if (a[i] == 1)
        {
            if (q1.size() < k)
                q1.push(b[i]);
            else
            {
                if (q1.top() > b[i])
                {
                    q2.push(q1.top());
                    q1.pop();
                    q1.push(b[i]);
                }
                else
                {
                    q2.push(b[i]);
                }
            }
        }
        else if (a[i] == 2)
        {
            if (q1.size() < k)
                cout << -1 << endl;
            else
            {
                cout << q1.top() << endl;
                q1.pop();
                if (q2.size() >= 1)
                {
                    q1.push(q2.top());
                    q2.pop();
                }
            }
        }
    }

    return 0;
}
0