結果

問題 No.649 ここでちょっとQK!
ユーザー ei1333333ei1333333
提出日時 2018-02-09 23:16:10
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 113 ms / 3,000 ms
コード長 1,606 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 201,808 KB
最終ジャッジ日時 2025-01-05 08:16:05
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 27 ms
6,820 KB
testcase_04 AC 85 ms
8,052 KB
testcase_05 AC 88 ms
8,180 KB
testcase_06 AC 71 ms
7,924 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 4 ms
6,820 KB
testcase_10 AC 4 ms
6,816 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 60 ms
7,028 KB
testcase_13 AC 57 ms
7,024 KB
testcase_14 AC 58 ms
6,904 KB
testcase_15 AC 57 ms
6,900 KB
testcase_16 AC 60 ms
7,028 KB
testcase_17 AC 62 ms
7,028 KB
testcase_18 AC 68 ms
6,816 KB
testcase_19 AC 74 ms
7,024 KB
testcase_20 AC 79 ms
7,156 KB
testcase_21 AC 86 ms
8,052 KB
testcase_22 AC 93 ms
8,056 KB
testcase_23 AC 98 ms
7,928 KB
testcase_24 AC 105 ms
7,924 KB
testcase_25 AC 113 ms
7,796 KB
testcase_26 AC 113 ms
8,052 KB
testcase_27 AC 4 ms
6,820 KB
testcase_28 AC 4 ms
6,820 KB
testcase_29 AC 4 ms
6,820 KB
testcase_30 AC 48 ms
7,028 KB
testcase_31 AC 48 ms
6,820 KB
testcase_32 AC 3 ms
6,824 KB
testcase_33 AC 4 ms
6,824 KB
testcase_34 AC 4 ms
6,820 KB
testcase_35 AC 3 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:61:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   61 |   scanf("%d %d", &Q, &K);
      |   ~~~~~^~~~~~~~~~~~~~~~~
main.cpp:64:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   64 |     scanf("%d", &T[i]);
      |     ~~~~~^~~~~~~~~~~~~
main.cpp:66:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   66 |       scanf("%lld", &V[i]);
      |       ~~~~~^~~~~~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;


using int64 = long long;

template< class T >
struct BinaryIndexedTree
{
  vector< T > data;

  BinaryIndexedTree(int sz)
  {
    data.assign(++sz, 0);
  }

  T sum(int k)
  {
    T ret = 0;
    for(++k; k > 0; k -= k & -k) ret += data[k];
    return (ret);
  }

  void add(int k, T x)
  {
    for(++k; k < data.size(); k += k & -k) data[k] += x;
  }
};

template< class T >
struct AdditionalBIT : BinaryIndexedTree< T >
{
  int curr;

  AdditionalBIT(int sz) : BinaryIndexedTree< T >(sz)
  {
    curr = 1;
    while(curr <= sz) curr <<= 1;
  }

  int lower_bound(T w)
  {
    if(w <= 0) return (0);
    int i = 0;
    for(int k = curr; k > 0; k >>= 1) {
      if(i + k < BinaryIndexedTree< T >::data.size() && BinaryIndexedTree< T >::data[i + k] < w) {
        w -= BinaryIndexedTree< T >::data[i + k];
        i += k;
      }
    }
    return (i);
  }
};

int main()
{
  int Q, K, T[200000];
  int64 V[200000];

  scanf("%d %d", &Q, &K);
  vector< int64 > vs;
  for(int i = 0; i < Q; i++) {
    scanf("%d", &T[i]);
    if(T[i] == 1) {
      scanf("%lld", &V[i]);
      vs.push_back(V[i]);
    }
  }
  sort(begin(vs), end(vs));
  vs.erase(unique(begin(vs), end(vs)), end(vs));
  AdditionalBIT< int > bit(vs.size());
  int sz = 0;
  for(int i = 0; i < Q; i++) {
    if(T[i] == 1) {
      bit.add(lower_bound(begin(vs), end(vs), V[i]) - begin(vs), 1);
      ++sz;
    } else {
      if(sz < K) {
        puts("-1");
      } else {
        auto p = bit.lower_bound(K);
        printf("%lld\n", vs[p]);
        bit.add(p, -1);
        --sz;
      }
    }
  }
}
0