結果

問題 No.2809 Sort Query
ユーザー silv723silv723
提出日時 2024-04-21 19:55:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,957 bytes
コンパイル時間 4,619 ms
コンパイル使用メモリ 255,020 KB
実行使用メモリ 33,284 KB
最終ジャッジ日時 2024-07-12 20:56:50
合計ジャッジ時間 65,686 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 797 ms
24,448 KB
testcase_02 AC 754 ms
24,408 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 651 ms
24,448 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 666 ms
24,448 KB
testcase_10 AC 650 ms
24,448 KB
testcase_11 AC 942 ms
33,284 KB
testcase_12 AC 925 ms
33,156 KB
testcase_13 AC 931 ms
33,156 KB
testcase_14 AC 933 ms
33,156 KB
testcase_15 AC 940 ms
33,280 KB
testcase_16 AC 922 ms
33,152 KB
testcase_17 AC 912 ms
33,156 KB
testcase_18 AC 913 ms
33,160 KB
testcase_19 AC 906 ms
33,156 KB
testcase_20 AC 980 ms
33,156 KB
testcase_21 AC 1,041 ms
33,156 KB
testcase_22 AC 1,056 ms
33,160 KB
testcase_23 AC 1,056 ms
33,132 KB
testcase_24 AC 1,018 ms
33,156 KB
testcase_25 AC 1,044 ms
33,156 KB
testcase_26 AC 901 ms
29,592 KB
testcase_27 AC 892 ms
29,464 KB
testcase_28 AC 892 ms
29,464 KB
testcase_29 AC 972 ms
29,464 KB
testcase_30 AC 935 ms
29,464 KB
testcase_31 AC 873 ms
29,460 KB
testcase_32 AC 856 ms
29,464 KB
testcase_33 AC 863 ms
29,464 KB
testcase_34 AC 867 ms
29,588 KB
testcase_35 AC 857 ms
29,468 KB
testcase_36 AC 963 ms
33,240 KB
testcase_37 AC 960 ms
33,284 KB
testcase_38 AC 968 ms
33,156 KB
testcase_39 AC 968 ms
33,156 KB
testcase_40 AC 948 ms
33,156 KB
testcase_41 AC 661 ms
24,448 KB
testcase_42 AC 685 ms
24,448 KB
testcase_43 AC 722 ms
24,448 KB
testcase_44 AC 692 ms
24,448 KB
testcase_45 AC 678 ms
24,576 KB
testcase_46 AC 648 ms
24,404 KB
testcase_47 AC 660 ms
24,448 KB
testcase_48 AC 672 ms
24,396 KB
testcase_49 AC 659 ms
24,576 KB
testcase_50 AC 669 ms
24,448 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 AC 415 ms
20,608 KB
testcase_61 AC 591 ms
24,192 KB
testcase_62 AC 377 ms
12,672 KB
testcase_63 WA -
testcase_64 AC 682 ms
23,808 KB
testcase_65 AC 342 ms
17,664 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 #

#pragma GCC optimize("Ofast")
#include<bits/stdc++.h>
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
struct segtree{
  int n;
  vector<int> dat;
  segtree(int _n):n(_n){
    dat.resize(2*n);
  }
  void update(int i, int c){
    i += n;
    dat[i] = c;
    i /= 2;
    while(i){
      dat[i] = dat[2*i] + dat[2*i+1];
      i /= 2;
    }
  }
  int sum(int l, int r){
    l += n;
    r += n;
    int ret = 0;
    while(l < r){
      if(l & 1) ret += dat[l++];
      if(r & 1) ret += dat[--r];
      l /= 2, r /= 2;
    }
    return ret;
  }
};
int main(){
  int n, q;
  scanf("%d%d", &n, &q);
  //assert(1 <= n && n <= 500000 && 1 <= q && q <= 500000);
  tree<long long, null_type, less_equal<long long>, rb_tree_tag, tree_order_statistics_node_update> m;
  segtree ch(n);
  unordered_map<int, long long> m2;
  long long check_x = 0;
  for(int i = 0; i < n; i++){
    long long x;
    scanf("%ld", &x);
    //assert(1 <= x && x <= 1000000000000000000LL);
    //assert(check_x <= x);
    check_x = x;
    m.insert(x);
  }
  while(q--){
    int type;
    scanf("%d", &type);
    //assert(1 <= type && type <= 3);
    if(type == 1){
      int k;
      long long x;
      scanf("%d%ld", &k, &x);
      //assert(1 <= k && k <= n && 1 <= x && x <= 1000000000000000000LL);
      k--;
      if(m2.count(k)){
        m2[k] = x;
      }else{
        m2[k] = x;
        ch.update(k, 1);
        int c = ch.sum(0, k);
        auto p = m.find_by_order(k - c);
        m.erase(p);
      }
    }else if(type == 2){
      for(auto [p, q] : m2){
        ch.update(p, 0);
        m.insert(q);
      }
      m2.clear();
    }else{
      int k;
      scanf("%d", &k);
      //assert(1 <= k && k <= n);
      k--;
      if(m2.count(k)){
        printf("%ld\n", m2[k]);
      }else{
        int c = ch.sum(0, k);
        auto p = m.find_by_order(k - c);
        printf("%ld\n", *p);
      }
    }
  }
}
0