結果
| 問題 |
No.1005 BOT対策
|
| コンテスト | |
| ユーザー |
nehan_der_thal
|
| 提出日時 | 2020-03-06 22:16:24 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,177 bytes |
| コンパイル時間 | 277 ms |
| コンパイル使用メモリ | 81,940 KB |
| 実行使用メモリ | 67,576 KB |
| 最終ジャッジ日時 | 2024-10-14 10:44:36 |
| 合計ジャッジ時間 | 2,258 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 13 WA * 14 |
ソースコード
def partial_match_table(word):
table = [0] * (len(word) + 1)
table[0] = -1
i, j = 0, 1
while j < len(word):
matched = word[i] == word[j]
if not matched and i > 0:
i = table[i]
else:
if matched:
i += 1
j += 1
table[j] = i
return table
def kmp_search(text, word):
table = partial_match_table(word)
i, p = 0, 0
results = []
while i < len(text) and p < len(word):
if text[i] == word[p]:
i += 1
p += 1
if p == len(word):
p = table[p]
results.append((i-len(word), i))
elif p == 0:
i += 1
else:
p = table[p]
return results
s = input().strip()
t = input().strip()
if len(t) == 1 and t in s:
import sys
print(-1)
sys.exit()
rs = []
for i, (a, b) in enumerate(kmp_search(s, t)):
print(a,b)
rs.append((a, 0, i))
rs.append((b-1, 1, i))
rs.sort()
r = 0
ts = set()
for x, f, i in rs:
if f == 0:
ts.add(i)
continue
if f == 1 and i in ts:
ts = set()
r += 1
continue
print(r)
nehan_der_thal