結果

問題 No.2554 MMA文字列2 (Query Version)
ユーザー t98slidert98slider
提出日時 2024-04-04 04:32:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 342 ms / 5,000 ms
コード長 4,432 bytes
コンパイル時間 3,113 ms
コンパイル使用メモリ 208,576 KB
実行使用メモリ 115,068 KB
最終ジャッジ日時 2024-04-04 04:33:14
合計ジャッジ時間 18,597 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 3 ms
6,676 KB
testcase_03 AC 4 ms
6,676 KB
testcase_04 AC 5 ms
6,676 KB
testcase_05 AC 4 ms
6,676 KB
testcase_06 AC 3 ms
6,676 KB
testcase_07 AC 4 ms
6,676 KB
testcase_08 AC 3 ms
6,676 KB
testcase_09 AC 4 ms
6,676 KB
testcase_10 AC 4 ms
6,676 KB
testcase_11 AC 3 ms
6,676 KB
testcase_12 AC 20 ms
32,216 KB
testcase_13 AC 283 ms
106,004 KB
testcase_14 AC 58 ms
28,668 KB
testcase_15 AC 204 ms
113,816 KB
testcase_16 AC 162 ms
31,400 KB
testcase_17 AC 253 ms
58,588 KB
testcase_18 AC 95 ms
6,956 KB
testcase_19 AC 115 ms
30,896 KB
testcase_20 AC 254 ms
110,212 KB
testcase_21 AC 119 ms
10,516 KB
testcase_22 AC 300 ms
115,068 KB
testcase_23 AC 327 ms
115,068 KB
testcase_24 AC 302 ms
115,068 KB
testcase_25 AC 300 ms
115,068 KB
testcase_26 AC 297 ms
115,068 KB
testcase_27 AC 326 ms
115,068 KB
testcase_28 AC 299 ms
115,068 KB
testcase_29 AC 298 ms
115,068 KB
testcase_30 AC 297 ms
115,068 KB
testcase_31 AC 325 ms
115,068 KB
testcase_32 AC 37 ms
6,676 KB
testcase_33 AC 36 ms
6,676 KB
testcase_34 AC 43 ms
6,676 KB
testcase_35 AC 43 ms
6,676 KB
testcase_36 AC 44 ms
6,676 KB
testcase_37 AC 278 ms
115,068 KB
testcase_38 AC 279 ms
115,068 KB
testcase_39 AC 279 ms
115,068 KB
testcase_40 AC 277 ms
115,068 KB
testcase_41 AC 305 ms
115,068 KB
testcase_42 AC 280 ms
115,068 KB
testcase_43 AC 279 ms
115,068 KB
testcase_44 AC 282 ms
115,068 KB
testcase_45 AC 283 ms
115,068 KB
testcase_46 AC 283 ms
115,068 KB
testcase_47 AC 310 ms
115,068 KB
testcase_48 AC 338 ms
115,068 KB
testcase_49 AC 313 ms
115,068 KB
testcase_50 AC 314 ms
115,068 KB
testcase_51 AC 316 ms
115,068 KB
testcase_52 AC 318 ms
115,068 KB
testcase_53 AC 316 ms
115,068 KB
testcase_54 AC 313 ms
115,068 KB
testcase_55 AC 342 ms
115,068 KB
testcase_56 AC 315 ms
115,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template <class S, S (*op)(S, S), S (*e)()> struct segtree {
    public:
    segtree() : segtree(0) {}
    segtree(int n) : segtree(std::vector<S>(n, e())) {}
    segtree(const std::vector<S>& v) : _n(int(v.size())) {
        log = ceil_pow2(_n);
        size = 1 << log;
        d = std::vector<S>(2 * size, e());
        for (int i = 0; i < _n; i++) d[size + i] = v[i];
        for (int i = size - 1; i >= 1; i--) {
            update(i);
        }
    }

    void set(int p, S x) {
        assert(0 <= p && p < _n);
        p += size;
        d[p] = x;
        for (int i = 1; i <= log; i++) update(p >> i);
    }

    S get(int p) {
        assert(0 <= p && p < _n);
        return d[p + size];
    }
    const S operator[](int p) const { return get(p); }
    S operator[](int p) { return get(p); }

    S prod(int l, int r) {
        assert(0 <= l && l <= r && r <= _n);
        S sml = e(), smr = e();
        l += size;
        r += size;

        while (l < r) {
            if (l & 1) sml = op(sml, d[l++]);
            if (r & 1) smr = op(d[--r], smr);
            l >>= 1;
            r >>= 1;
        }
        return op(sml, smr);
    }

    S all_prod() { return d[1]; }

    template <bool (*f)(S)> int max_right(int l) {
        return max_right(l, [](S x) { return f(x); });
    }
    template <class F> int max_right(int l, F f) {
        assert(0 <= l && l <= _n);
        assert(f(e()));
        if (l == _n) return _n;
        l += size;
        S sm = e();
        do {
            while (l % 2 == 0) l >>= 1;
            if (!f(op(sm, d[l]))) {
                while (l < size) {
                    l = (2 * l);
                    if (f(op(sm, d[l]))) {
                        sm = op(sm, d[l]);
                        l++;
                    }
                }
                return l - size;
            }
            sm = op(sm, d[l]);
            l++;
        } while ((l & -l) != l);
        return _n;
    }

    template <bool (*f)(S)> int min_left(int r) {
        return min_left(r, [](S x) { return f(x); });
    }
    template <class F> int min_left(int r, F f) {
        assert(0 <= r && r <= _n);
        assert(f(e()));
        if (r == 0) return 0;
        r += size;
        S sm = e();
        do {
            r--;
            while (r > 1 && (r % 2)) r >>= 1;
            if (!f(op(d[r], sm))) {
                while (r < size) {
                    r = (2 * r + 1);
                    if (f(op(d[r], sm))) {
                        sm = op(d[r], sm);
                        r--;
                    }
                }
                return r + 1 - size;
            }
            sm = op(d[r], sm);
        } while ((r & -r) != r);
        return 0;
    }

    private:
    int _n, size, log;
    std::vector<S> d;
    int ceil_pow2(int n) {
        int x = 0;
        while ((1U << x) < (unsigned int)(n)) x++;
        return x;
    }
    void update(int k) { d[k] = op(d[2 * k], d[2 * k + 1]); }
};

//0 : 1文字
//1 : 同じ2文字
//2 : 同じとは限らない2文字
using S = pair<ll, array<array<ll, 26>, 3>>;

S op(S lhs, S rhs){
    ll ans = 0;
    array<array<ll, 26>, 3> tmp{};
    auto &&[lcnt, la] = lhs;
    auto &&[rcnt, ra] = rhs;
    ans = lcnt + rcnt;
    int rs = accumulate(ra[0].begin(), ra[0].end(), 0);
    for(int i = 0; i < 26; i++){
        tmp[0][i] += la[0][i] + ra[0][i];
        tmp[1][i] += la[0][i] * ra[0][i] + la[1][i] + ra[1][i];
        tmp[2][i] += la[0][i] * rs + la[2][i] + ra[2][i]; 
        ans += la[0][i] * ra[2][i];
        ans += la[1][i] * rs;
    }
    return make_pair(ans, tmp);
}

S e(){
    S tmp{};
    return tmp;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    S tmp2{};
    int n, Q, cmd, l, r, p;
    char c;
    string s;
    cin >> n >> s;
    vector<S> tmp(n, e());
    for(int i = 0; i < n; i++){
        tmp[i].second[0][s[i] - 'A']++;
    }
    segtree<S, op, e> seg(tmp);
    cin >> Q;
    while(Q--){
        cin >> cmd;
        if(cmd == 2){
            cin >> l >> r;
            auto [ans, tmp] = seg.prod(l - 1, r);
            for(auto v : tmp[0]){
                ans -= v * (v - 1) * (v - 2) / 6;
            }
            cout << ans << '\n';
        }else{
            cin >> p >> c;
            tmp2.second[0][c - 'A']++;
            seg.set(p - 1, tmp2);
            tmp2.second[0][c - 'A']--;
        }
    }
}
0