結果

問題 No.649 ここでちょっとQK!
ユーザー iryukiiryuki
提出日時 2020-07-15 18:23:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 298 ms / 3,000 ms
コード長 1,497 bytes
コンパイル時間 1,269 ms
コンパイル使用メモリ 98,208 KB
実行使用メモリ 6,044 KB
最終ジャッジ日時 2024-05-01 22:25:08
合計ジャッジ時間 5,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 298 ms
5,452 KB
testcase_04 AC 183 ms
6,044 KB
testcase_05 AC 172 ms
5,860 KB
testcase_06 AC 173 ms
5,580 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 94 ms
5,376 KB
testcase_13 AC 95 ms
5,376 KB
testcase_14 AC 92 ms
5,376 KB
testcase_15 AC 98 ms
5,376 KB
testcase_16 AC 94 ms
5,376 KB
testcase_17 AC 107 ms
5,376 KB
testcase_18 AC 117 ms
5,376 KB
testcase_19 AC 127 ms
5,376 KB
testcase_20 AC 137 ms
5,376 KB
testcase_21 AC 149 ms
5,376 KB
testcase_22 AC 160 ms
5,452 KB
testcase_23 AC 167 ms
5,376 KB
testcase_24 AC 176 ms
5,376 KB
testcase_25 AC 187 ms
5,376 KB
testcase_26 AC 200 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 59 ms
5,376 KB
testcase_31 AC 62 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <stack>
#include <queue>
#include <cmath>
#include <string>
#include <iterator>
#include <map>
#include <set>
#include <iomanip>
#include <vector>
using namespace std;
using ll = long long;
using ld = long double;
using P = pair<ll, ll>;
using Graph = vector<vector<int>>;
int dx[] = {0, 1, 0, -1};
int dy[] = {1, 0, -1, 0};
#define INF 1000000000000000000
#define MAX 200001
#define MOD 1000000007

int main(){
    int Q, K;
    cin >> Q >> K;
    vector<ll> ans;
    priority_queue<ll> zen;
    priority_queue<ll, vector<ll>, greater<ll>> kou;
    for(int i = 0; i < Q; i++){
        int type; 
        cin >> type;
        if(type == 1){
            ll v;
            cin >> v;
            if(zen.size() < K) zen.push(v);
            else{
                ll u = zen.top();
                if(v < u){
                    zen.pop();
                    kou.push(u);
                    zen.push(v);
                }
                else{
                    kou.push(v);
                }
            }
        }
        else{
            if(zen.size() == K){
                ll a = zen.top();
                zen.pop();
                ans.push_back(a);
                if(kou.size() != 0){
                    zen.push(kou.top());
                    kou.pop();
                }
            }
            else{
                ans.push_back(-1);
            }
        }
    }
    for(int i = 0; i < ans.size(); i++) cout << ans[i] << endl;
}
0