結果

問題 No.649 ここでちょっとQK!
ユーザー noppo_puyonoppo_puyo
提出日時 2018-10-19 10:16:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,017 bytes
コンパイル時間 1,039 ms
コンパイル使用メモリ 96,084 KB
実行使用メモリ 19,620 KB
最終ジャッジ日時 2024-11-15 22:32:19
合計ジャッジ時間 42,375 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,348 KB
testcase_01 AC 2 ms
13,632 KB
testcase_02 AC 2 ms
13,344 KB
testcase_03 AC 279 ms
13,764 KB
testcase_04 AC 215 ms
19,620 KB
testcase_05 AC 213 ms
19,328 KB
testcase_06 AC 219 ms
19,200 KB
testcase_07 AC 2 ms
13,604 KB
testcase_08 AC 2 ms
13,348 KB
testcase_09 AC 2 ms
13,764 KB
testcase_10 AC 2 ms
13,768 KB
testcase_11 AC 2 ms
13,092 KB
testcase_12 AC 126 ms
14,116 KB
testcase_13 AC 114 ms
13,696 KB
testcase_14 AC 110 ms
14,112 KB
testcase_15 AC 880 ms
13,824 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 RE -
testcase_30 AC 143 ms
7,168 KB
testcase_31 RE -
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 1 ms
13,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<string>
#include<array>
#include<cmath>
#include<algorithm>
#include<map>
#include<set>
#include<queue>
#include<numeric>
#include<iomanip>
#include<utility>
#include<cstdlib>
#include<typeinfo>
typedef long long int lint;

using namespace std;
#define INF 1000000000000000005
int main()
{
lint q,k;
std::cin >> q >> k;
multiset<lint> query;
lint index = 0;
for(lint i = 0; i < q; i++){
    lint temp = 0;
    std::cin >> temp;
    if(temp == 1){
        lint v = 0;
        std::cin >> v;
        query.insert(v);
        index++;
    } else {
        if(index >= k){
            auto itr = query.begin();
            if(k <= q/2){
                std::advance(itr,k - 1);
            } else {
                itr = query.end();
                std::advance(itr,index - k);
            }
            std::cout << *itr << std::endl;
            query.erase(itr);
            index--;
        } else {
            std::cout << -1 << std::endl;
        }
    }
}
return 0;
}
0