結果

問題 No.430 文字列検索
ユーザー rlangevinrlangevin
提出日時 2023-09-07 00:23:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 454 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 133,400 KB
最終ジャッジ日時 2024-11-10 01:07:06
合計ジャッジ時間 4,864 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 454 ms
133,400 KB
testcase_02 AC 291 ms
88,320 KB
testcase_03 AC 296 ms
88,832 KB
testcase_04 AC 39 ms
53,888 KB
testcase_05 AC 40 ms
53,632 KB
testcase_06 AC 39 ms
53,632 KB
testcase_07 AC 39 ms
54,272 KB
testcase_08 AC 404 ms
132,996 KB
testcase_09 AC 42 ms
55,168 KB
testcase_10 AC 98 ms
80,384 KB
testcase_11 AC 356 ms
100,488 KB
testcase_12 AC 357 ms
100,376 KB
testcase_13 AC 352 ms
100,384 KB
testcase_14 AC 335 ms
94,464 KB
testcase_15 AC 326 ms
91,648 KB
testcase_16 AC 299 ms
88,832 KB
testcase_17 AC 307 ms
88,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

class RollingHash():
    def __init__(self, s):
        self._mod = 2 ** 64 - 1
        self._base = 4649
        
        n = len(s)
        self.h = [0] * (n + 1)
        self.pw = [1] * (n + 1)

        for i in range(n):
            self.h[i + 1] = self.h[i] * self._base + ord(s[i])
            self.h[i + 1] %= self._mod

        for i in range(n):
            self.pw[i + 1] = self.pw[i] * self._base
            self.pw[i + 1] %= self._mod
            
        """
        s[l:r]のhash値
        """
    def get(self, l, r):
        return (self.h[r] - self.h[l] * self.pw[r - l]) % self._mod
    
    
S = list(input().rstrip())
Sr = RollingHash(S)
D = [defaultdict(int) for i in range(11)]
for i in range(1, min(11, len(S) + 1)):
    for j in range(len(S) - i + 1):
        D[i][Sr.get(j, j + i)] += 1
    
ans = 0
M = int(input())
for _ in range(M):
    C = list(input().rstrip())
    if len(C) > len(S):
        continue
    Cr = RollingHash(C)
    ans += D[len(C)][Cr.get(0, len(C))]

print(ans)
0