結果

問題 No.2809 Sort Query
ユーザー silv723silv723
提出日時 2024-04-21 20:26:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 858 ms / 2,000 ms
コード長 1,897 bytes
コンパイル時間 5,432 ms
コンパイル使用メモリ 256,272 KB
実行使用メモリ 61,432 KB
最終ジャッジ日時 2024-07-12 20:59:09
合計ジャッジ時間 58,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 839 ms
61,284 KB
testcase_02 AC 686 ms
61,312 KB
testcase_03 AC 719 ms
61,352 KB
testcase_04 AC 721 ms
61,248 KB
testcase_05 AC 756 ms
61,288 KB
testcase_06 AC 649 ms
61,240 KB
testcase_07 AC 644 ms
61,432 KB
testcase_08 AC 639 ms
61,304 KB
testcase_09 AC 657 ms
61,248 KB
testcase_10 AC 665 ms
61,308 KB
testcase_11 AC 725 ms
61,264 KB
testcase_12 AC 703 ms
61,300 KB
testcase_13 AC 725 ms
61,268 KB
testcase_14 AC 721 ms
61,304 KB
testcase_15 AC 723 ms
61,304 KB
testcase_16 AC 723 ms
61,288 KB
testcase_17 AC 714 ms
61,304 KB
testcase_18 AC 731 ms
61,148 KB
testcase_19 AC 728 ms
61,404 KB
testcase_20 AC 743 ms
61,284 KB
testcase_21 AC 842 ms
61,364 KB
testcase_22 AC 827 ms
61,304 KB
testcase_23 AC 855 ms
61,288 KB
testcase_24 AC 835 ms
61,252 KB
testcase_25 AC 858 ms
61,176 KB
testcase_26 AC 780 ms
61,284 KB
testcase_27 AC 794 ms
61,300 KB
testcase_28 AC 782 ms
61,300 KB
testcase_29 AC 808 ms
61,300 KB
testcase_30 AC 773 ms
61,292 KB
testcase_31 AC 736 ms
61,308 KB
testcase_32 AC 750 ms
61,308 KB
testcase_33 AC 757 ms
61,240 KB
testcase_34 AC 735 ms
61,348 KB
testcase_35 AC 743 ms
61,360 KB
testcase_36 AC 782 ms
61,304 KB
testcase_37 AC 776 ms
61,176 KB
testcase_38 AC 775 ms
61,160 KB
testcase_39 AC 769 ms
61,168 KB
testcase_40 AC 780 ms
61,180 KB
testcase_41 AC 668 ms
61,268 KB
testcase_42 AC 696 ms
61,276 KB
testcase_43 AC 672 ms
61,332 KB
testcase_44 AC 683 ms
61,188 KB
testcase_45 AC 686 ms
61,136 KB
testcase_46 AC 650 ms
61,164 KB
testcase_47 AC 630 ms
61,336 KB
testcase_48 AC 644 ms
61,308 KB
testcase_49 AC 658 ms
61,348 KB
testcase_50 AC 653 ms
61,260 KB
testcase_51 AC 395 ms
42,664 KB
testcase_52 AC 231 ms
42,688 KB
testcase_53 AC 242 ms
42,684 KB
testcase_54 AC 234 ms
42,732 KB
testcase_55 AC 241 ms
42,736 KB
testcase_56 AC 443 ms
33,888 KB
testcase_57 AC 358 ms
21,280 KB
testcase_58 AC 324 ms
31,848 KB
testcase_59 AC 331 ms
19,688 KB
testcase_60 AC 409 ms
39,056 KB
testcase_61 AC 539 ms
60,992 KB
testcase_62 AC 339 ms
30,940 KB
testcase_63 AC 446 ms
34,916 KB
testcase_64 AC 649 ms
60,728 KB
testcase_65 AC 316 ms
35,972 KB
testcase_66 AC 2 ms
5,376 KB
testcase_67 AC 2 ms
5,376 KB
testcase_68 AC 2 ms
5,376 KB
testcase_69 AC 2 ms
5,376 KB
testcase_70 AC 1 ms
5,376 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);
  gp_hash_table<int, long long> m2;
  for(int i = 0; i < n; i++){
    long long x;
    scanf("%ld", &x);
    assert(1 <= x && x <= 1000000000000000000LL);
    m2[i] = 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.find(k) != m2.end()){
        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.find(k) != m2.end()){
        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