結果
問題 | No.430 文字列検索 |
ユーザー | nebukuro09 |
提出日時 | 2016-10-03 11:03:35 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 512 ms / 2,000 ms |
コード長 | 768 bytes |
コンパイル時間 | 249 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 51,948 KB |
最終ジャッジ日時 | 2024-11-10 00:08:20 |
合計ジャッジ時間 | 5,721 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
6,272 KB |
testcase_01 | AC | 512 ms
51,948 KB |
testcase_02 | AC | 449 ms
6,784 KB |
testcase_03 | AC | 445 ms
6,912 KB |
testcase_04 | AC | 9 ms
6,272 KB |
testcase_05 | AC | 9 ms
6,272 KB |
testcase_06 | AC | 10 ms
6,400 KB |
testcase_07 | AC | 9 ms
6,400 KB |
testcase_08 | AC | 489 ms
51,500 KB |
testcase_09 | AC | 11 ms
6,272 KB |
testcase_10 | AC | 49 ms
10,752 KB |
testcase_11 | AC | 438 ms
11,420 KB |
testcase_12 | AC | 441 ms
11,424 KB |
testcase_13 | AC | 439 ms
11,292 KB |
testcase_14 | AC | 436 ms
11,008 KB |
testcase_15 | AC | 436 ms
8,192 KB |
testcase_16 | AC | 441 ms
6,912 KB |
testcase_17 | AC | 434 ms
6,912 KB |
ソースコード
S = raw_input() M = input() C = [raw_input() for _ in xrange(M)] Ch = [] for s in C: h = 0 for i, c in enumerate(s): h += 26**i*(ord(c)-ord('A')+1) Ch.append(h) N = len(S) rolling_hash = {} for n in xrange(1, 11): if n > N: break h = 0 for i in xrange(n): h += 26**i*(ord(S[i])-ord('A')+1) if h in rolling_hash: rolling_hash[h] += 1 else: rolling_hash[h] = 1 for i in xrange(n, N): h -= ord(S[i-n])-ord('A')+1 h /= 26 h += 26**(n-1)*(ord(S[i])-ord('A')+1) if h in rolling_hash: rolling_hash[h] += 1 else: rolling_hash[h] = 1 ans = 0 for c in Ch: if c in rolling_hash: ans += rolling_hash[c] print ans