結果

問題 No.2554 MMA文字列2 (Query Version)
ユーザー maeshunmaeshun
提出日時 2023-11-26 01:29:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,434 ms / 5,000 ms
コード長 1,971 bytes
コンパイル時間 4,280 ms
コンパイル使用メモリ 273,996 KB
実行使用メモリ 141,864 KB
最終ジャッジ日時 2024-09-26 11:25:18
合計ジャッジ時間 50,713 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 8 ms
6,940 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 8 ms
6,944 KB
testcase_10 AC 8 ms
6,944 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 114 ms
37,872 KB
testcase_13 AC 1,067 ms
141,744 KB
testcase_14 AC 216 ms
37,996 KB
testcase_15 AC 904 ms
141,764 KB
testcase_16 AC 642 ms
37,996 KB
testcase_17 AC 915 ms
72,588 KB
testcase_18 AC 247 ms
7,808 KB
testcase_19 AC 436 ms
37,868 KB
testcase_20 AC 1,024 ms
141,848 KB
testcase_21 AC 358 ms
12,032 KB
testcase_22 AC 1,258 ms
141,636 KB
testcase_23 AC 1,297 ms
141,756 KB
testcase_24 AC 1,223 ms
141,760 KB
testcase_25 AC 1,240 ms
141,760 KB
testcase_26 AC 1,351 ms
141,760 KB
testcase_27 AC 1,210 ms
141,760 KB
testcase_28 AC 1,261 ms
141,744 KB
testcase_29 AC 1,220 ms
141,632 KB
testcase_30 AC 1,281 ms
141,636 KB
testcase_31 AC 1,259 ms
141,760 KB
testcase_32 AC 105 ms
5,376 KB
testcase_33 AC 106 ms
5,376 KB
testcase_34 AC 119 ms
5,376 KB
testcase_35 AC 119 ms
5,376 KB
testcase_36 AC 119 ms
5,376 KB
testcase_37 AC 1,064 ms
141,764 KB
testcase_38 AC 1,094 ms
141,756 KB
testcase_39 AC 1,109 ms
141,760 KB
testcase_40 AC 1,079 ms
141,828 KB
testcase_41 AC 1,038 ms
141,752 KB
testcase_42 AC 1,199 ms
141,852 KB
testcase_43 AC 1,226 ms
141,764 KB
testcase_44 AC 1,099 ms
141,760 KB
testcase_45 AC 1,174 ms
141,764 KB
testcase_46 AC 1,101 ms
141,752 KB
testcase_47 AC 1,354 ms
141,628 KB
testcase_48 AC 1,332 ms
141,752 KB
testcase_49 AC 1,322 ms
141,744 KB
testcase_50 AC 1,395 ms
141,760 KB
testcase_51 AC 1,396 ms
141,632 KB
testcase_52 AC 1,402 ms
141,688 KB
testcase_53 AC 1,434 ms
141,764 KB
testcase_54 AC 1,420 ms
141,864 KB
testcase_55 AC 1,384 ms
141,840 KB
testcase_56 AC 1,386 ms
141,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

using S = tuple<ll, ll,ll, ll, ll>;
S op(S a, S b){
    auto [m, mm, ma, mma, len] = a;
    auto [m2, mm2, ma2, mma2,len2] = b;
    ll m3 = m + m2;
    ll mm3 = m * m2 + mm + mm2;
    ll ma3 = ma + ma2 + m * (len2-m2);
    ll mma3 = mma + mma2 + m*ma2 + mm * (len2-m2);
    return {m3,mm3,ma3,mma3,len+len2}; 
}

S e(){
    return {0,0,0,0,0};
}

int main()
{
    int n;
    string s;
    cin >> n >> s;
    int q;
    cin >> q;
    segtree<S, op, e> seg(n);
    vector<segtree<S, op, e>> cnt(26, seg);
    rep(i,n){
        rep(j,26){
            if(s[i]-'A'==j){
                cnt[j].set(i,{1,0,0,0,1});
            }
            else{
                cnt[j].set(i,{0,0,0,0,1});
            }
        }
    }
    rep(_,q){
        int t;
        cin >> t;
        if(t==1){
            int x;
            char c;
            cin >> x >> c;
            --x;
            rep(j,26){
                cnt[j].set(x,{0,0,0,0,1});
            }
            s[x] = c;
            rep(j,26){
                if(j==s[x]-'A'){
                    cnt[j].set(x,{1,0,0,0,1});
                }
                else{
                    cnt[j].set(x,{0,0,0,0,1});
                }
            }
        }else{
            int l, r;
            cin >> l >> r;
            --l;
            ll ans = 0;
            rep(i,26){
                S p = cnt[i].prod(l, r);
                auto [a,b,c,d, e] = p;
                ans += d;
            }
            cout << ans << endl;
        }
    }
    return 0;
}
0