結果

問題 No.2809 Sort Query
ユーザー reirei
提出日時 2024-07-12 23:09:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,255 bytes
コンパイル時間 1,863 ms
コンパイル使用メモリ 139,860 KB
実行使用メモリ 65,756 KB
最終ジャッジ日時 2024-07-12 23:10:46
合計ジャッジ時間 49,822 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 498 ms
60,084 KB
testcase_02 AC 515 ms
59,636 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 494 ms
60,204 KB
testcase_06 AC 463 ms
60,232 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 459 ms
59,832 KB
testcase_10 AC 489 ms
59,576 KB
testcase_11 AC 802 ms
65,756 KB
testcase_12 AC 784 ms
65,184 KB
testcase_13 AC 814 ms
65,008 KB
testcase_14 AC 777 ms
64,268 KB
testcase_15 AC 817 ms
65,588 KB
testcase_16 AC 803 ms
64,328 KB
testcase_17 AC 805 ms
64,632 KB
testcase_18 AC 800 ms
64,212 KB
testcase_19 AC 754 ms
64,448 KB
testcase_20 AC 806 ms
65,360 KB
testcase_21 AC 844 ms
64,396 KB
testcase_22 AC 867 ms
64,968 KB
testcase_23 AC 896 ms
64,272 KB
testcase_24 AC 884 ms
65,004 KB
testcase_25 AC 831 ms
65,396 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 597 ms
61,084 KB
testcase_32 AC 577 ms
62,276 KB
testcase_33 AC 569 ms
60,684 KB
testcase_34 AC 596 ms
61,180 KB
testcase_35 AC 582 ms
60,992 KB
testcase_36 AC 721 ms
64,740 KB
testcase_37 AC 750 ms
65,124 KB
testcase_38 AC 702 ms
64,476 KB
testcase_39 AC 745 ms
64,240 KB
testcase_40 AC 706 ms
64,080 KB
testcase_41 AC 513 ms
57,860 KB
testcase_42 AC 503 ms
57,316 KB
testcase_43 AC 509 ms
58,784 KB
testcase_44 AC 514 ms
58,248 KB
testcase_45 AC 597 ms
57,592 KB
testcase_46 AC 553 ms
58,808 KB
testcase_47 AC 479 ms
57,376 KB
testcase_48 AC 474 ms
57,448 KB
testcase_49 AC 491 ms
57,876 KB
testcase_50 AC 419 ms
58,104 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 467 ms
55,892 KB
testcase_62 AC 271 ms
32,256 KB
testcase_63 WA -
testcase_64 AC 503 ms
58,156 KB
testcase_65 AC 292 ms
35,636 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 2 ms
6,944 KB
testcase_69 WA -
testcase_70 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <atcoder/lazysegtree.hpp>
#include <atcoder/segtree.hpp>
#include <cassert>
#include <cmath>
#include <cstring>
#include <deque>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <tuple>
#include <utility>
#include <vector>
using namespace std;
using i8 = int8_t;
using i32 = int;
using i64 = long long;
// using i128 = __int128;
using u64 = unsigned long long;
using ll = long long;

void _main();
int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  _main();
}

i64 pow(i64 j, i64 n) {
  i64 res = 1;
  while (n > 0) {
    if (n & 1)
      res *= j;
    j *= j;
    n >>= 1;
  }
  return res;
}

i64 op(i64 a, i64 b) { return a + b; }
i64 e() { return 0; }
i64 m(i64 f, i64 x) { return x + f; }
i64 comp(i64 f, i64 g) { return f + g; }

i64 n, q;
void _main() {
  cin >> n >> q;
  vector<pair<i64, i64>> vs;
  vector<i64> a(n);
  for (i64 i = 0; i < n; i++) {
    cin >> a[i];
    vs.push_back({a[i], i});
    vs.push_back({0, i});
  }
  vector<tuple<i64, i64, i64>> query(q);
  for (i64 i = 0; i < q; i++) {
    i64 op, k, x;
    cin >> op;
    if (op == 1) {
      cin >> k >> x;
      vs.push_back({x, n + i});
    } else if (op == 3) {
      cin >> k;
    }
    k--;
    query[i] = {op, k, x};
  }
  sort(vs.begin(), vs.end());
  atcoder::segtree<i64, op, e> seg(vs.size());
  vector<i64> update(vs.size());
  set<i64> bk;
  for (i64 i = 0; i < n; i++) {
    seg.set(i, 1);
    i64 j = lower_bound(vs.begin(), vs.end(), make_pair(a[i], i)) - vs.begin();
    update[i] = j;
    bk.insert(i);
  }
  for (i64 i = 0; i < q; i++) {
    i64 op = get<0>(query[i]);
    i64 k = get<1>(query[i]);
    i64 x = get<2>(query[i]);
    if (op == 1) {
      i64 j =
          lower_bound(vs.begin(), vs.end(), make_pair(x, n + i)) - vs.begin();
      i64 p = seg.max_right(0, [&](i64 a) { return a <= k; });
      update[p] = j;
      bk.insert(p);
    } else if (op == 2) {
      for (auto j : bk) {
        seg.set(j, seg.get(j) - 1);
        seg.set(update[j], seg.get(update[j]) + 1);
        update[j] = 0;
      }
      bk.clear();
    } else {
      i64 p = seg.max_right(0, [&](i64 a) { return a <= k; });
      i64 ans = vs[p].first;
      cout << ans << "\n";
    }
  }
}
0