結果

問題 No.2761 Substitute and Search
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-21 20:30:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 772 ms / 4,000 ms
コード長 1,625 bytes
コンパイル時間 2,556 ms
コンパイル使用メモリ 213,864 KB
実行使用メモリ 39,424 KB
最終ジャッジ日時 2024-10-21 20:30:22
合計ジャッジ時間 7,710 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 263 ms
39,424 KB
testcase_05 AC 772 ms
39,424 KB
testcase_06 AC 94 ms
39,424 KB
testcase_07 AC 354 ms
39,424 KB
testcase_08 AC 114 ms
39,296 KB
testcase_09 AC 366 ms
39,424 KB
testcase_10 AC 94 ms
39,296 KB
testcase_11 AC 366 ms
39,424 KB
testcase_12 AC 304 ms
39,424 KB
testcase_13 AC 242 ms
39,424 KB
testcase_14 AC 242 ms
39,424 KB
testcase_15 AC 277 ms
39,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

mt19937_64 rng(time(0));
ll BASE = rng() % 998244353;

//Rolling Hash on Segment Tree

using S = modint998244353;
S op(S a, S b){
    return a+b;
}

S e() {
    return 0;
}

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<S> p(L);
    
    p[0] = 1;
    for (int j=1; j<L; j++) p[j] = p[j-1] * BASE;
    
    vector<segtree<S, op, e>> tree;
    for (int i=0; i<N; i++){
        cin >> s[i];
        vector<S> v(L);
        for (int j=0; j<L; j++){
            v[j] = p[j] * (s[i][j]-'a');
        }
        tree.push_back(segtree<S, op, e>(v));
    };

    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, p[k]*(d-'a'));
                }
            }
        }
        else{
            cin >> T;
            int ans=0;
            S x=0;
            for (int i=0; i<T.size(); i++){
                x += p[i] * (T[i]-'a');
            }
            for (int i=0; i<N; i++){
                S y = tree[i].prod(0, T.size());
                ans += (x.val() == y.val());
            }
            cout << ans << endl;
        }
    }

    return 0;
}
0