結果
問題 | No.430 文字列検索 |
ユーザー | chomeyama |
提出日時 | 2019-08-10 02:55:02 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 295 ms / 2,000 ms |
コード長 | 1,095 bytes |
コンパイル時間 | 86 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 13,056 KB |
最終ジャッジ日時 | 2024-11-10 00:27:09 |
合計ジャッジ時間 | 1,995 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
11,648 KB |
testcase_01 | AC | 295 ms
11,904 KB |
testcase_02 | AC | 69 ms
12,800 KB |
testcase_03 | AC | 74 ms
12,928 KB |
testcase_04 | AC | 32 ms
11,520 KB |
testcase_05 | AC | 32 ms
11,520 KB |
testcase_06 | AC | 33 ms
11,392 KB |
testcase_07 | AC | 32 ms
11,520 KB |
testcase_08 | AC | 57 ms
11,776 KB |
testcase_09 | AC | 34 ms
11,392 KB |
testcase_10 | AC | 38 ms
11,520 KB |
testcase_11 | AC | 103 ms
12,160 KB |
testcase_12 | AC | 77 ms
12,928 KB |
testcase_13 | AC | 77 ms
12,800 KB |
testcase_14 | AC | 75 ms
13,056 KB |
testcase_15 | AC | 74 ms
12,928 KB |
testcase_16 | AC | 68 ms
12,800 KB |
testcase_17 | AC | 65 ms
12,800 KB |
ソースコード
import sys sys.setrecursionlimit(100000000) def input(): return sys.stdin.readline()[:-1] from bisect import * from collections import * from heapq import * from fractions import Fraction CHRtoINT = defaultdict(int) AtoZ = [chr(i) for i in range(65,65+26)] for i, c in enumerate(AtoZ): CHRtoINT[c] = i def RollingHash(S, s, x, b=26, m=67280421310721): B, val, se = pow(b, x-1, m), 0, set() for _s in s: v, t = 0, B for c in _s: v = (v + CHRtoINT[c] * t) % m t //= b se.add(v) t = B for c in S[:x]: val = (val + CHRtoINT[c] * t) % m t //= b ret = int(val in se) B *= b for i, c in enumerate(S[:-x]): val = (val * b - CHRtoINT[c] * B + CHRtoINT[S[i+x]]) % m ret += int(val in se) return ret S = input() M = int(input()) s = [input() for i in range(M)] s.sort(key=lambda x: len(x)) l, r, ans = 0, 0, 0 for k in range(len(s[0]), len(s[-1])+1): while r < M and len(s[r]) == k: r += 1 if l != r: ans += RollingHash(S, s[l:r], k) l = r print(ans)