結果

問題 No.430 文字列検索
ユーザー irumo8202irumo8202
提出日時 2022-01-24 16:53:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,424 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 77,744 KB
最終ジャッジ日時 2024-11-10 00:58:51
合計ジャッジ時間 14,599 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 1,398 ms
77,372 KB
testcase_02 AC 1,317 ms
76,928 KB
testcase_03 AC 1,318 ms
77,100 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 34 ms
52,224 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 34 ms
52,224 KB
testcase_08 AC 50 ms
63,616 KB
testcase_09 AC 42 ms
59,776 KB
testcase_10 AC 50 ms
63,488 KB
testcase_11 AC 1,402 ms
77,404 KB
testcase_12 AC 1,325 ms
77,312 KB
testcase_13 AC 1,324 ms
77,676 KB
testcase_14 AC 1,414 ms
77,524 KB
testcase_15 AC 1,323 ms
77,440 KB
testcase_16 AC 1,424 ms
77,440 KB
testcase_17 AC 1,308 ms
77,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 1-dimension Rolling Hash
class RollingHash:
    def __init__(self, s, base, mod):
        self.mod = mod
        self.pw = pw = [1] * (len(s) + 1)

        l = len(s)
        self.h = h = [0] * (l + 1)

        v = 0
        for i in range(l):
            h[i + 1] = v = (v * base + ord(s[i])) % mod
        v = 1
        for i in range(l):
            pw[i + 1] = v = v * base % mod

    def get(self, l, r):
        return (self.h[r] - self.h[l] * self.pw[r - l]) % self.mod


# 非クラス版
base = 37
mod = 10 ** 9 + 9


S = input()
N = len(S)

RHS = RollingHash(S, base, mod)

M = int(input())

ans = 0

for i in range(M):
    C = input()
    K = len(C)
    RH = RollingHash(C, base, mod)
    hash = RH.get(0, K)

    for i in range(N - K + 1):
        if RHS.get(i, i + K) == hash:
            ans += 1

print(ans)
0