結果

問題 No.2761 Substitute and Search
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-21 20:12:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,530 bytes
コンパイル時間 2,681 ms
コンパイル使用メモリ 217,396 KB
実行使用メモリ 138,752 KB
最終ジャッジ日時 2024-10-21 20:13:00
合計ジャッジ時間 12,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2,839 ms
138,624 KB
testcase_05 TLE -
testcase_06 AC 541 ms
138,624 KB
testcase_07 AC 3,425 ms
138,752 KB
testcase_08 AC 551 ms
138,624 KB
testcase_09 AC 3,460 ms
138,624 KB
testcase_10 AC 509 ms
138,624 KB
testcase_11 AC 3,390 ms
138,624 KB
testcase_12 AC 1,974 ms
138,496 KB
testcase_13 AC 1,912 ms
138,496 KB
testcase_14 AC 1,917 ms
138,624 KB
testcase_15 AC 1,930 ms
138,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/segtree>

using namespace std;
using ll = long long;
using namespace atcoder;

mt19937_64 rng(time(0));
const ll B=1;
ll MOD[B] = {998244353};
ll BASE[B] = {static_cast<ll>(rng() % MOD[0])};

//Rolling Hash on Segment Tree
struct Record{
    ll hash, pow;
};

using S = array<Record, B>;
S op(S a, S b){
    S res;
    for (int i=0; i<B; i++){
        res[i] = {(a[i].hash * b[i].pow % MOD[i] + b[i].hash) % MOD[i], (a[i].pow * b[i].pow)%MOD[i]};
    }
    return res;
}

S e() {
    S res;
    for (int i=0; i<B; i++) res[i] = {0,1};
    return res;
}

S gen(int x){
    S res;
    for (int i=0; i<B; i++) res[i] = {x, BASE[i]};
    return res;
}

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    /*
       tがSの接頭辞であるか?
       t[1:|T|]=S[1:|T|]
       Rolling Hash
    */

    ll N, L, Q, t, k;
    char c, d;
    string T;
    cin >> N >> L >> Q;
    vector<string> s(N);
    vector<segtree<S, op, e>> tree;

    auto to_hash=[&](string &s){
        S x;
        int N=s.size();
        vector<S> v(N);
        for (int i=0; i<N; i++){
            x = gen(s[i]-'a');
            v[i] = x;
        }
        return segtree<S, op, e>(v);
    };

    vector p(B, vector<ll>(L));
    
    for (int i=0; i<B; i++){
        p[i][0] = 1;
        for (int j=1; j<L; j++){
            p[i][j] = p[i][j-1] * BASE[i];
            p[i][j] %= MOD[i];
        }
    }
    
    auto to_hash2=[&](string &t){
        vector<ll> res(B);

        for (int i=0; i<B; i++){
            for (int j=0; j<t.size(); j++){
                res[i] += (p[i][t.size()-1-j] * (t[j]-'a')) % MOD[i];
                res[i] %= MOD[i];
            }
        }
        return res;
    };
    
    for (int i=0; i<N; i++){
        cin >> s[i];
        tree.push_back(to_hash(s[i]));
    };

    while(Q--){
        cin >> t;
        if (t == 1){
            cin >> k >> c >> d;
            k--;
            for (int i=0; i<N; i++){
                if (s[i][k] == c){
                    s[i][k] = d;
                    tree[i].set(k, gen(d-'a'));
                }
            }
        }
        else{
            cin >> T;
            int ans=0;
            vector<ll> x = to_hash2(T);
            for (int i=0; i<N; i++){
                bool f=1;
                S y = tree[i].prod(0, T.size());
                for (int j=0; j<B; j++) f &= (x[j] == y[j].hash);
                ans += f;
            }
            cout << ans << endl;
        }
    }

    return 0;
}
0