結果

問題 No.2809 Sort Query
ユーザー KudeKude
提出日時 2024-07-12 23:41:37
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,593 ms / 2,000 ms
コード長 1,982 bytes
コンパイル時間 5,628 ms
コンパイル使用メモリ 310,260 KB
実行使用メモリ 43,140 KB
最終ジャッジ日時 2024-07-12 23:43:23
合計ジャッジ時間 88,500 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1,081 ms
43,008 KB
testcase_02 AC 1,030 ms
43,136 KB
testcase_03 AC 968 ms
43,108 KB
testcase_04 AC 1,001 ms
43,136 KB
testcase_05 AC 1,003 ms
43,136 KB
testcase_06 AC 950 ms
43,008 KB
testcase_07 AC 917 ms
43,136 KB
testcase_08 AC 916 ms
43,008 KB
testcase_09 AC 972 ms
43,136 KB
testcase_10 AC 945 ms
43,008 KB
testcase_11 AC 1,304 ms
43,136 KB
testcase_12 AC 1,343 ms
42,984 KB
testcase_13 AC 1,304 ms
43,136 KB
testcase_14 AC 1,317 ms
43,008 KB
testcase_15 AC 1,305 ms
43,136 KB
testcase_16 AC 1,307 ms
43,136 KB
testcase_17 AC 1,292 ms
43,088 KB
testcase_18 AC 1,312 ms
43,136 KB
testcase_19 AC 1,323 ms
43,136 KB
testcase_20 AC 1,311 ms
43,136 KB
testcase_21 AC 1,534 ms
43,136 KB
testcase_22 AC 1,497 ms
43,136 KB
testcase_23 AC 1,552 ms
42,896 KB
testcase_24 AC 1,511 ms
43,136 KB
testcase_25 AC 1,593 ms
43,136 KB
testcase_26 AC 1,364 ms
43,136 KB
testcase_27 AC 1,337 ms
43,136 KB
testcase_28 AC 1,380 ms
43,128 KB
testcase_29 AC 1,387 ms
43,008 KB
testcase_30 AC 1,403 ms
43,136 KB
testcase_31 AC 1,299 ms
43,136 KB
testcase_32 AC 1,301 ms
43,136 KB
testcase_33 AC 1,281 ms
43,056 KB
testcase_34 AC 1,257 ms
43,136 KB
testcase_35 AC 1,288 ms
43,024 KB
testcase_36 AC 1,349 ms
43,136 KB
testcase_37 AC 1,353 ms
43,136 KB
testcase_38 AC 1,331 ms
43,104 KB
testcase_39 AC 1,329 ms
43,136 KB
testcase_40 AC 1,317 ms
43,132 KB
testcase_41 AC 963 ms
43,008 KB
testcase_42 AC 986 ms
43,136 KB
testcase_43 AC 1,013 ms
43,136 KB
testcase_44 AC 968 ms
43,140 KB
testcase_45 AC 996 ms
43,136 KB
testcase_46 AC 890 ms
43,136 KB
testcase_47 AC 914 ms
43,136 KB
testcase_48 AC 913 ms
43,136 KB
testcase_49 AC 857 ms
43,136 KB
testcase_50 AC 888 ms
42,920 KB
testcase_51 AC 761 ms
24,320 KB
testcase_52 AC 714 ms
24,320 KB
testcase_53 AC 738 ms
24,320 KB
testcase_54 AC 714 ms
24,320 KB
testcase_55 AC 761 ms
24,192 KB
testcase_56 AC 657 ms
25,856 KB
testcase_57 AC 483 ms
19,840 KB
testcase_58 AC 466 ms
22,144 KB
testcase_59 AC 488 ms
16,640 KB
testcase_60 AC 628 ms
35,840 KB
testcase_61 AC 813 ms
42,368 KB
testcase_62 AC 506 ms
20,864 KB
testcase_63 AC 663 ms
27,904 KB
testcase_64 AC 943 ms
41,856 KB
testcase_65 AC 524 ms
30,208 KB
testcase_66 AC 2 ms
6,940 KB
testcase_67 AC 2 ms
6,940 KB
testcase_68 AC 2 ms
6,944 KB
testcase_69 AC 3 ms
6,940 KB
testcase_70 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

using namespace __gnu_pbds;
using TP = tree<pair<ll, int>, null_type, less<pair<ll, int>>, rb_tree_tag, tree_order_statistics_node_update>;
using TI = tree<ll, null_type, less<ll>, rb_tree_tag, tree_order_statistics_node_update>;

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, q;
  cin >> n >> q;
  VL a(n);
  rep(i, n) cin >> a[i];
  TI updated;
  rep(i, n) updated.insert(i);
  // (value, id)
  int id_nxt = 0;
  TP sorted;
  rep(_, q) {
    int op;
    cin >> op;
    if (op == 1) {
      int k;
      ll x;
      cin >> k >> x;
      k--;
      auto [it, inserted] = updated.insert(k);
      if (inserted) {
        int smaller = updated.order_of_key(k);
        sorted.erase(sorted.find_by_order(k - smaller));
      }
      a[k] = x;
    } else if (op == 2) {
      for (int i : updated) {
        sorted.insert({a[i], id_nxt++});
      }
      updated.clear();
    } else {
      int k;
      cin >> k;
      k--;
      auto it = updated.lower_bound(k);
      if (it != updated.end() && *it == k) {
        cout << a[k] << '\n';
      } else {
        int smaller = updated.order_of_key(k);
        cout << sorted.find_by_order(k - smaller)->first << '\n';
      }
    }
  }
}
0