結果

問題 No.430 文字列検索
ユーザー zundamo-tizundamo-ti
提出日時 2020-11-07 18:51:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 1,248 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 141,440 KB
最終ジャッジ日時 2024-11-10 00:48:45
合計ジャッジ時間 2,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 202 ms
141,312 KB
testcase_02 AC 105 ms
77,440 KB
testcase_03 AC 108 ms
77,568 KB
testcase_04 AC 40 ms
54,144 KB
testcase_05 AC 39 ms
53,504 KB
testcase_06 AC 40 ms
53,760 KB
testcase_07 AC 41 ms
53,760 KB
testcase_08 AC 169 ms
141,440 KB
testcase_09 AC 50 ms
61,184 KB
testcase_10 AC 63 ms
70,912 KB
testcase_11 AC 128 ms
86,528 KB
testcase_12 AC 129 ms
86,656 KB
testcase_13 AC 130 ms
86,784 KB
testcase_14 AC 121 ms
81,408 KB
testcase_15 AC 119 ms
80,256 KB
testcase_16 AC 109 ms
78,080 KB
testcase_17 AC 105 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
read = sys.stdin.read
readline = sys.stdin.readline
readlines = sys.stdin.readlines

class ROLLINGHASH:
    def __init__(self, string, base, mod):
        self.size = len(string)
        self.base = base
        self.mod = mod
        self.hash = [0]*(self.size + 1)
        self.pow = [1]*(self.size + 1)
        
        for i, c in enumerate(string):
            o = ord(c) - ord('A') + 1
            self.hash[i + 1] = (self.hash[i] * self.base + o) % self.mod
            self.pow[i + 1] = self.pow[i] * self.base % self.mod

    def get_hash(self, l, r):
        """s[l:r]のhash値"""
        ret = (self.hash[r] - self.hash[l] * self.pow[r - l]) % self.mod
        return ret

def main():
    base = 37
    mod = 10**9 + 7
    S = readline().strip()
    M = int(readline())
    L = len(S)
    
    RH = ROLLINGHASH(S, base, mod)
    d = defaultdict(int)
    for length in range(1, 11):
        for l in range(L - length + 1):
            r = l + length
            h = RH.get_hash(l, r)
            d[h] += 1
    
    ans = 0
    for _ in range(M):
        C = input()
        h = ROLLINGHASH(C, base, mod).hash[len(C)]
        ans += d[h]
    print(ans)

if __name__ == "__main__":
   main()
0