結果

問題 No.2809 Sort Query
ユーザー silv723silv723
提出日時 2024-04-21 20:22:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,927 bytes
コンパイル時間 5,130 ms
コンパイル使用メモリ 262,800 KB
実行使用メモリ 43,048 KB
最終ジャッジ日時 2024-07-12 20:58:34
合計ジャッジ時間 55,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 701 ms
24,448 KB
testcase_02 AC 664 ms
24,448 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 540 ms
24,448 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 528 ms
24,448 KB
testcase_10 AC 537 ms
24,448 KB
testcase_11 AC 654 ms
42,972 KB
testcase_12 AC 628 ms
42,972 KB
testcase_13 AC 647 ms
42,956 KB
testcase_14 AC 650 ms
43,028 KB
testcase_15 AC 635 ms
43,016 KB
testcase_16 AC 647 ms
42,972 KB
testcase_17 AC 645 ms
43,044 KB
testcase_18 AC 634 ms
43,048 KB
testcase_19 AC 635 ms
42,876 KB
testcase_20 AC 639 ms
43,016 KB
testcase_21 AC 746 ms
42,808 KB
testcase_22 AC 756 ms
42,976 KB
testcase_23 AC 765 ms
42,956 KB
testcase_24 AC 763 ms
42,972 KB
testcase_25 AC 724 ms
42,820 KB
testcase_26 AC 688 ms
33,876 KB
testcase_27 AC 706 ms
33,748 KB
testcase_28 AC 686 ms
33,852 KB
testcase_29 AC 682 ms
33,748 KB
testcase_30 AC 696 ms
33,916 KB
testcase_31 AC 641 ms
33,816 KB
testcase_32 AC 660 ms
33,936 KB
testcase_33 AC 644 ms
33,820 KB
testcase_34 AC 667 ms
33,764 KB
testcase_35 AC 644 ms
33,788 KB
testcase_36 AC 701 ms
42,812 KB
testcase_37 AC 685 ms
43,020 KB
testcase_38 AC 687 ms
42,996 KB
testcase_39 AC 678 ms
42,820 KB
testcase_40 AC 688 ms
43,004 KB
testcase_41 AC 577 ms
24,408 KB
testcase_42 AC 576 ms
24,448 KB
testcase_43 AC 561 ms
24,448 KB
testcase_44 AC 551 ms
24,448 KB
testcase_45 AC 540 ms
24,448 KB
testcase_46 AC 573 ms
24,448 KB
testcase_47 AC 559 ms
24,448 KB
testcase_48 AC 563 ms
24,448 KB
testcase_49 AC 561 ms
24,448 KB
testcase_50 AC 563 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 331 ms
20,608 KB
testcase_61 AC 458 ms
24,192 KB
testcase_62 AC 297 ms
12,672 KB
testcase_63 WA -
testcase_64 AC 648 ms
23,808 KB
testcase_65 AC 261 ms
17,664 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 2 ms
6,940 KB
testcase_69 WA -
testcase_70 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target ("avx2")
#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);
    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.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