結果

問題 No.2554 MMA文字列2 (Query Version)
ユーザー Nzt3Nzt3
提出日時 2024-01-12 00:35:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 401 ms / 5,000 ms
コード長 1,535 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 207,520 KB
実行使用メモリ 78,376 KB
最終ジャッジ日時 2024-09-27 20:42:01
合計ジャッジ時間 17,676 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 49 ms
22,632 KB
testcase_13 AC 327 ms
72,140 KB
testcase_14 AC 69 ms
20,280 KB
testcase_15 AC 296 ms
77,440 KB
testcase_16 AC 166 ms
22,024 KB
testcase_17 AC 258 ms
40,236 KB
testcase_18 AC 83 ms
6,944 KB
testcase_19 AC 125 ms
21,736 KB
testcase_20 AC 315 ms
74,880 KB
testcase_21 AC 106 ms
8,064 KB
testcase_22 AC 381 ms
78,192 KB
testcase_23 AC 380 ms
78,188 KB
testcase_24 AC 377 ms
78,188 KB
testcase_25 AC 371 ms
78,276 KB
testcase_26 AC 359 ms
78,160 KB
testcase_27 AC 389 ms
78,264 KB
testcase_28 AC 385 ms
78,132 KB
testcase_29 AC 379 ms
78,176 KB
testcase_30 AC 379 ms
78,336 KB
testcase_31 AC 389 ms
78,252 KB
testcase_32 AC 31 ms
6,944 KB
testcase_33 AC 32 ms
6,940 KB
testcase_34 AC 38 ms
6,944 KB
testcase_35 AC 37 ms
6,944 KB
testcase_36 AC 38 ms
6,944 KB
testcase_37 AC 359 ms
78,240 KB
testcase_38 AC 355 ms
78,312 KB
testcase_39 AC 358 ms
78,256 KB
testcase_40 AC 355 ms
78,376 KB
testcase_41 AC 353 ms
78,224 KB
testcase_42 AC 358 ms
78,276 KB
testcase_43 AC 366 ms
78,280 KB
testcase_44 AC 365 ms
78,200 KB
testcase_45 AC 361 ms
78,180 KB
testcase_46 AC 363 ms
78,272 KB
testcase_47 AC 395 ms
78,280 KB
testcase_48 AC 390 ms
78,180 KB
testcase_49 AC 392 ms
78,196 KB
testcase_50 AC 395 ms
78,228 KB
testcase_51 AC 387 ms
78,176 KB
testcase_52 AC 393 ms
78,196 KB
testcase_53 AC 391 ms
78,336 KB
testcase_54 AC 384 ms
78,160 KB
testcase_55 AC 401 ms
78,184 KB
testcase_56 AC 395 ms
78,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/segtree>
using namespace std;
using ll=long long;
constexpr int CHAR_NUM=26;

struct S{
  array<ll,CHAR_NUM>MA,A;
  ll MMA;
  void print(){
    cout<<MMA<<'/';
    for(int i=0;i<26;i++){
      cout<<A[i]<<',';
    }cout<<'/';
    for(int i=0;i<26;i++){
      cout<<MA[i]<<',';
    }cout<<'\n';
  }
};
S seg_e(){
  S ret;
  for(int i=0;i<CHAR_NUM;i++){
    ret.MA[i]=0;
    ret.A[i]=0;
  }
  ret.MMA=0;
  return ret;
}
S seg_op(S a,S b){
  S ret=seg_e();
  ret.MMA=a.MMA+b.MMA;
  for(int i=0;i<CHAR_NUM;i++){
    ret.A[i]+=a.A[i]+b.A[i];
    ret.MA[i]+=a.MA[i]+b.MA[i];
  }
  ll aMA_s=accumulate(a.MA.begin(),a.MA.end(),0ll),
  aA_s=accumulate(a.A.begin(),a.A.end(),0ll);
  ll bMA_s=accumulate(b.MA.begin(),b.MA.end(),0ll),
  bA_s=accumulate(b.A.begin(),b.A.end(),0ll);
  for(int i=0;i<CHAR_NUM;i++){
    ret.MMA+=a.A[i]*b.MA[i];
    ret.MMA+=a.A[i]*(a.A[i]-1)/2*(bA_s-b.A[i]);
    ret.MA[i]+=a.A[i]*(bA_s-b.A[i]);
  }
  return ret;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  string T;
  cin>>T;
  atcoder::segtree<S,seg_op,seg_e> seg(N);
  for(int i=0;i<N;i++){
    S t=seg_e();
    t.A[T[i]-'A']=1;
    seg.set(i,t);
  }
  int Q;
  cin>>Q;
  while(Q--){
    int a;;
    cin>>a;
    if(a==1){
      int x;
      char c;
      cin>>x>>c;
      --x;
      S t=seg_e();
      t.A[c-'A']=1;
      seg.set(x,t);
    }else if(a==2){
      int l,r;
      cin>>l>>r;
      --l;
      cout<<seg.prod(l,r).MMA<<'\n';
      // seg.prod(l,r).print();
    }
  }
}
0