結果

問題 No.430 文字列検索
ユーザー timitimi
提出日時 2022-12-04 21:48:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,457 ms / 2,000 ms
コード長 1,177 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,272 KB
最終ジャッジ日時 2024-11-10 01:02:48
合計ジャッジ時間 11,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,856 KB
testcase_01 AC 976 ms
77,004 KB
testcase_02 AC 1,457 ms
75,136 KB
testcase_03 AC 972 ms
76,960 KB
testcase_04 AC 37 ms
57,856 KB
testcase_05 AC 36 ms
57,728 KB
testcase_06 AC 38 ms
57,728 KB
testcase_07 AC 35 ms
58,240 KB
testcase_08 AC 49 ms
63,872 KB
testcase_09 AC 41 ms
60,288 KB
testcase_10 AC 49 ms
62,976 KB
testcase_11 AC 978 ms
77,184 KB
testcase_12 AC 977 ms
77,056 KB
testcase_13 AC 967 ms
76,928 KB
testcase_14 AC 973 ms
76,800 KB
testcase_15 AC 970 ms
77,272 KB
testcase_16 AC 970 ms
77,056 KB
testcase_17 AC 981 ms
77,056 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
pw = None
def rolling_hash(s):
    l = len(s)
    h = [0]*(l + 1)
    v = 0
    for i in range(l):
        h[i+1] = v = (v * base + ord(s[i])) % mod
    return h
# RH前に、必要な長さの最大値分のpow-tableを計算しておく
def setup_pw(l):
    global pw
    pw = [1]*(l + 1)
    v = 1
    for i in range(l):
        pw[i+1] = v = v * base % mod
def get(h, l, r):
    return (h[r] - h[l] * pw[r-l]) % mod
  
setup_pw(5*10**4)
S=input()
M=int(input())
A=rolling_hash(S)
ans=0
for i in range(M):
  T=input()
  B=rolling_hash(T)[-1]
  for j in range(len(S)-len(T)+1):
    d=get(A,j,j+len(T))
    if d==B:
      ans+=1
    #print(d,j,j+len(T))
print(ans)
0