結果
問題 | No.3015 アンチローリングハッシュ |
ユーザー | yada |
提出日時 | 2020-03-06 22:01:48 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 417 ms / 2,000 ms |
コード長 | 1,565 bytes |
コンパイル時間 | 199 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 20,224 KB |
最終ジャッジ日時 | 2024-10-14 06:57:58 |
合計ジャッジ時間 | 11,337 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 394 ms
13,824 KB |
testcase_01 | AC | 395 ms
13,440 KB |
testcase_02 | AC | 397 ms
13,696 KB |
testcase_03 | AC | 391 ms
13,568 KB |
testcase_04 | AC | 392 ms
13,952 KB |
testcase_05 | AC | 397 ms
13,696 KB |
testcase_06 | AC | 410 ms
18,816 KB |
testcase_07 | AC | 402 ms
14,976 KB |
testcase_08 | AC | 410 ms
19,712 KB |
testcase_09 | AC | 415 ms
19,712 KB |
testcase_10 | AC | 412 ms
19,712 KB |
testcase_11 | AC | 416 ms
19,840 KB |
testcase_12 | AC | 412 ms
19,840 KB |
testcase_13 | AC | 416 ms
19,968 KB |
testcase_14 | AC | 409 ms
19,456 KB |
testcase_15 | AC | 417 ms
18,304 KB |
testcase_16 | AC | 414 ms
20,096 KB |
testcase_17 | AC | 417 ms
19,712 KB |
testcase_18 | AC | 409 ms
20,224 KB |
testcase_19 | AC | 415 ms
19,840 KB |
testcase_20 | AC | 415 ms
19,968 KB |
testcase_21 | AC | 415 ms
20,096 KB |
testcase_22 | AC | 394 ms
13,440 KB |
ソースコード
import os import sys if os.getenv("LOCAL"): sys.stdin = open("_in.txt", "r") sys.setrecursionlimit(10 ** 9) INF = float("inf") IINF = 10 ** 18 MOD = 10 ** 9 + 7 class RollingHash: def __init__(self, seq, base=10 ** 9 + 7, mod=2 ** 89 - 1): """ :param str|typing.Sequence[int] seq: :param int base: :param int mod: """ if isinstance(seq, str): self._seq = seq = list(map(ord, seq)) else: self._seq = seq self._size = len(seq) self._base = base self._mod = mod hashes = [0] * (len(seq) + 1) power = [1] * (len(seq) + 1) for i, c in enumerate(seq): hashes[i + 1] = (hashes[i] * base + c) % mod power[i + 1] = power[i] * base % mod self._hashes = hashes self._power = power def get(self, L, r): """ [L, r) のハッシュ値を取得します :param int L: :param int r: """ if L >= r: return 0 return (self._hashes[r] - self._hashes[L] * self._power[r - L]) % self._mod import random A, B = list(map(int, sys.stdin.buffer.readline().split())) S = '' for _ in range(10 ** 5): S += chr(random.randint(ord('a'), ord('z'))) # 鳩の巣原理 rh = RollingHash(S, base=A, mod=B) l = 0 r = 100 hist = {} while r <= len(S): h = rh.get(l, r) if h in hist: pl, pr = hist[h] print(S[l:r]) print(S[pl:pr]) break hist[h] = l, r l += 1 r += 1 else: assert False