結果

問題 No.2761 Substitute and Search
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-05-20 19:46:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 999 ms / 4,000 ms
コード長 1,927 bytes
コンパイル時間 4,599 ms
コンパイル使用メモリ 271,744 KB
実行使用メモリ 39,296 KB
最終ジャッジ日時 2024-05-20 19:46:52
合計ジャッジ時間 12,927 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 661 ms
39,296 KB
testcase_05 AC 999 ms
39,168 KB
testcase_06 AC 244 ms
39,296 KB
testcase_07 AC 662 ms
39,296 KB
testcase_08 AC 247 ms
39,296 KB
testcase_09 AC 674 ms
39,296 KB
testcase_10 AC 243 ms
39,168 KB
testcase_11 AC 684 ms
39,168 KB
testcase_12 AC 467 ms
39,296 KB
testcase_13 AC 493 ms
39,168 KB
testcase_14 AC 469 ms
39,296 KB
testcase_15 AC 477 ms
39,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using mint = modint998244353;

unsigned int xorshift() {
    static unsigned int x = 123456789, y = 362436069, z = 521288629, w = 88675123;
    unsigned int t = (x ^ (x << 11));
    x = y;
    y = z;
    z = w;
    return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)));
}

mint op(mint a, mint b) {
    return a + b;
}

mint e() {
    return mint(0);
}

int main() {
    int n, l, q;
    cin >> n >> l >> q;
    vector<string> s(n);
    for (int i = 0; i < n; i++) {
        cin >> s[i];
    }
    mint b = mint(xorshift());
    vector<mint> pows(3010);
    pows[0] = mint(1);
    for (int i = 1; i < 3010; i++) {
        pows[i] = pows[i - 1] * b;
    }
    vector<segtree<mint, op, e>> seg(n, segtree<mint, op, e>(l));
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < l; j++) {
            mint x = mint(s[i][j] - 'a' + 1);
            mint h = pows[j] * x;
            seg[i].set(j, h);
        }
    }
    while (q--) {
        int t;
        cin >> t;
        if (t == 1) {
            int k;
            char c, d;
            cin >> k >> c >> d;
            k--;
            mint x = mint(d - 'a' + 1);
            for (int i = 0; i < n; i++) {
                if (s[i][k] == c) {
                    mint h = pows[k] * x;
                    seg[i].set(k, h);
                    s[i][k] = d;
                }
            }
        } else {
            string pre;
            cin >> pre;
            int len = pre.size();
            mint h = mint(0);
            for (int i = 0; i < len; i++) {
                mint x = mint(pre[i] - 'a' + 1);
                h += pows[i] * x;
            }
            int ans = 0;
            for (int i = 0; i < n; i++) {
                if (seg[i].prod(0, len) == h) {
                    ans++;
                }
            }
            cout << ans << endl;
        }
    }
}
0