結果

問題 No.430 文字列検索
ユーザー noriocnorioc
提出日時 2024-08-18 21:23:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 902 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 120,372 KB
最終ジャッジ日時 2024-11-10 01:12:21
合計ジャッジ時間 2,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,016 KB
testcase_01 AC 188 ms
120,244 KB
testcase_02 AC 98 ms
78,176 KB
testcase_03 AC 103 ms
78,336 KB
testcase_04 AC 36 ms
53,760 KB
testcase_05 AC 39 ms
53,888 KB
testcase_06 AC 36 ms
53,888 KB
testcase_07 AC 37 ms
54,104 KB
testcase_08 AC 146 ms
120,372 KB
testcase_09 AC 44 ms
60,800 KB
testcase_10 AC 62 ms
73,600 KB
testcase_11 AC 122 ms
87,852 KB
testcase_12 AC 122 ms
87,736 KB
testcase_13 AC 121 ms
87,808 KB
testcase_14 AC 117 ms
83,276 KB
testcase_15 AC 110 ms
80,896 KB
testcase_16 AC 101 ms
78,284 KB
testcase_17 AC 106 ms
78,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def rolling_hash(s: str):
    """[l, r] のハッシュを返す関数を返す"""
    mod = 998244353
    p = 1009
    n = len(s)
    t = [ord(c) for c in s]
    a = [0] * n
    b = [0] * n
    a[0] = t[0]
    b[0] = 1
    for i in range(1, n):
        a[i] = (a[i-1] * p + t[i]) % mod
        b[i] = (p * b[i-1]) % mod

    # [l, r] のハッシュ値
    def f(l: int, r: int) -> int:
        assert 0 <= l <= r < n
        h = a[r]
        if l > 0:
            h -= a[l-1] * b[r-l+1]
            h %= mod
        return h

    return f


S = input()
hash = rolling_hash(S)
d = defaultdict(int)
for i in range(1, 11):
    for j in range(len(S)):
        if j+i > len(S): break
        h = hash(j, j+i-1)
        d[h] += 1

ans = 0
M = int(input())
for _ in range(M):
    C = input()
    ha = rolling_hash(C)
    h = ha(0, len(C)-1)
    ans += d[h]

print(ans)
0