結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー rlangevinrlangevin
提出日時 2023-02-03 22:33:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 68,048 KB
最終ジャッジ日時 2024-07-02 20:39:29
合計ジャッジ時間 7,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,712 KB
testcase_01 AC 49 ms
51,840 KB
testcase_02 AC 48 ms
51,840 KB
testcase_03 AC 149 ms
67,076 KB
testcase_04 AC 80 ms
65,664 KB
testcase_05 AC 65 ms
64,768 KB
testcase_06 AC 197 ms
65,792 KB
testcase_07 AC 182 ms
65,920 KB
testcase_08 AC 173 ms
66,688 KB
testcase_09 AC 339 ms
68,048 KB
testcase_10 AC 207 ms
65,920 KB
testcase_11 AC 179 ms
65,664 KB
testcase_12 AC 202 ms
66,304 KB
testcase_13 AC 204 ms
65,664 KB
testcase_14 AC 207 ms
66,304 KB
testcase_15 AC 200 ms
67,072 KB
testcase_16 AC 116 ms
65,152 KB
testcase_17 AC 134 ms
65,792 KB
testcase_18 AC 204 ms
65,664 KB
testcase_19 AC 205 ms
65,792 KB
testcase_20 AC 205 ms
66,176 KB
testcase_21 AC 204 ms
65,408 KB
testcase_22 AC 203 ms
66,048 KB
testcase_23 AC 203 ms
65,408 KB
testcase_24 AC 202 ms
66,944 KB
testcase_25 AC 204 ms
67,072 KB
testcase_26 AC 200 ms
67,200 KB
testcase_27 AC 159 ms
67,840 KB
testcase_28 AC 196 ms
66,304 KB
testcase_29 AC 196 ms
65,408 KB
testcase_30 AC 39 ms
52,352 KB
testcase_31 AC 38 ms
52,480 KB
testcase_32 AC 235 ms
67,072 KB
testcase_33 AC 201 ms
66,304 KB
testcase_34 AC 39 ms
52,352 KB
testcase_35 AC 239 ms
68,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
S = list(map(ord, S))
N = len(S)
inf = 10 ** 18
dp = [inf] * (N + 1)

mod = 2**31 - 1
bb = [1] * (N + 2)
invbb = [1] * (N + 2)
for i in range(1, N + 2):
    bb[i] = bb[i - 1] * 4869 % mod
    invbb[i] = pow(bb[i], mod - 2, mod)
    
b = 4869
invb = pow(b, mod - 2, mod)
SS = [0]

for i in range(1, N + 1):
    val = 0
    rh = SS[i - 1] * b + S[i - 1]
    SS.append(rh%mod)
    pre = 0
    for j in range(i):
        rh2 = pre * b + S[i - j - 1]
        rh2 %= mod
        if rh2 == (rh - SS[i - j - 1] * bb[j + 1]) % mod:
            val = max(val, min(dp[i - j - 1], j + 1))
        pre = rh2
    dp[i] = val
print(dp[-1])  
0