結果

問題 No.649 ここでちょっとQK!
ユーザー ei1333333ei1333333
提出日時 2018-02-09 22:36:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 673 bytes
コンパイル時間 3,983 ms
コンパイル使用メモリ 232,944 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-10-08 16:06:47
合計ジャッジ時間 8,465 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 176 ms
16,128 KB
testcase_05 AC 175 ms
16,128 KB
testcase_06 AC 179 ms
16,128 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 83 ms
8,576 KB
testcase_13 AC 80 ms
8,576 KB
testcase_14 AC 80 ms
8,576 KB
testcase_15 AC 86 ms
8,704 KB
testcase_16 AC 84 ms
9,216 KB
testcase_17 AC 93 ms
9,472 KB
testcase_18 AC 108 ms
9,984 KB
testcase_19 AC 120 ms
10,496 KB
testcase_20 AC 130 ms
11,008 KB
testcase_21 WA -
testcase_22 AC 158 ms
12,032 KB
testcase_23 AC 171 ms
12,416 KB
testcase_24 WA -
testcase_25 AC 205 ms
13,440 KB
testcase_26 AC 218 ms
13,952 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 73 ms
8,576 KB
testcase_31 AC 77 ms
8,960 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 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>

using namespace __gnu_pbds;

using namespace std;

using int64 = long long;

tree< pair< int64, int >, null_type, less< pair< int64, int > >, rb_tree_tag, tree_order_statistics_node_update > ts;

int main()
{
  int Q, K;
  scanf("%d %d", &Q, &K);
  --K;
  int ptr = 0;
  while(Q--) {
    int t;
    scanf("%d", &t);
    if(t == 1) {
      int64 x;
      scanf("%lld", &x);
      ts.insert(make_pair(x, ptr++));
    } else {
      if(ts.size() - 1 >= K) {
        auto p = ts.find_by_order(K);
        printf("%lld\n", p->first);
        ts.erase(p);
      } else {
        puts("-1");
      }
    }
  }

}

0