結果

問題 No.2761 Substitute and Search
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-05-20 20:02:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,368 bytes
コンパイル時間 3,936 ms
コンパイル使用メモリ 270,392 KB
実行使用メモリ 139,520 KB
最終ジャッジ日時 2024-05-20 20:03:35
合計ジャッジ時間 14,595 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
6,944 KB
testcase_04 AC 3,141 ms
139,264 KB
testcase_05 TLE -
testcase_06 AC 1,142 ms
139,392 KB
testcase_07 AC 3,232 ms
139,392 KB
testcase_08 AC 1,168 ms
139,264 KB
testcase_09 AC 3,330 ms
139,392 KB
testcase_10 AC 1,103 ms
139,520 KB
testcase_11 AC 3,224 ms
139,520 KB
testcase_12 AC 2,316 ms
139,520 KB
testcase_13 AC 2,248 ms
139,392 KB
testcase_14 AC 2,188 ms
139,392 KB
testcase_15 AC 2,249 ms
139,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using P = pair<long long, long long>;
long long m1 = 1000000007, m2 = 1000000009;

/*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)));
}*/

P op(P a, P b) {
    return {(a.first + b.first) % m1, (a.second + b.second) % m2};
}

P e() {
    return {0LL, 0LL};
}

int main() {
    int n, l, q;
    cin >> n >> l >> q;
    vector<string> s(n);
    for (int i = 0; i < n; i++) {
        cin >> s[i];
    }
    long long b1 = 100LL, b2 = 200LL;
    vector<long long> p1(l), p2(l);
    p1[0] = p2[0] = 1LL;
    for (int i = 1; i < l; i++) {
        p1[i] = p1[i - 1] * b1 % m1;
        p2[i] = p2[i - 1] * b2 % m2;
    }
    vector<segtree<P, op, e>> seg(n, segtree<P, op, e>(l));
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < l; j++) {
            long long x = s[i][j] - 'a' + 1LL;
            long long h1 = (p1[j] * x) % m1;
            long long h2 = (p2[j] * x) % m2;
            seg[i].set(j, {h1, h2});
        }
    }
    while (q--) {
        int t;
        cin >> t;
        if (t == 1) {
            int k;
            char c, d;
            cin >> k >> c >> d;
            k--;
            long long x = d - 'a' + 1LL;
            for (int i = 0; i < n; i++) {
                if (s[i][k] == c) {
                    long long h1 = p1[k] * x % m1;
                    long long h2 = p2[k] * x % m2;
                    seg[i].set(k, {h1, h2});
                    s[i][k] = d;
                }
            }
        } else {
            string pre;
            cin >> pre;
            int len = pre.size();
            long long h1 = 0LL, h2 = 0LL;
            for (int i = 0; i < len; i++) {
                long long x = pre[i] - 'a' + 1LL;
                h1 += (p1[i] * x) % m1;
                h1 %= m1;
                h2 += (p2[i] * x) % m2;
                h2 %= m2;
            }
            int ans = 0;
            for (int i = 0; i < n; i++) {
                P cur = seg[i].prod(0, len);
                if (cur.first == h1 && cur.second == h2) {
                    ans++;
                }
            }
            cout << ans << endl;
        }
    }
}
0