結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー lloyzlloyz
提出日時 2023-02-04 14:09:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 1,157 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 76,484 KB
最終ジャッジ日時 2024-07-03 11:50:25
合計ジャッジ時間 5,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,688 KB
testcase_01 AC 37 ms
52,408 KB
testcase_02 AC 36 ms
52,672 KB
testcase_03 AC 102 ms
76,016 KB
testcase_04 AC 66 ms
73,092 KB
testcase_05 AC 62 ms
70,504 KB
testcase_06 AC 121 ms
76,204 KB
testcase_07 AC 122 ms
76,040 KB
testcase_08 AC 111 ms
76,144 KB
testcase_09 AC 113 ms
76,180 KB
testcase_10 AC 124 ms
76,152 KB
testcase_11 AC 112 ms
76,196 KB
testcase_12 AC 125 ms
76,020 KB
testcase_13 AC 116 ms
76,264 KB
testcase_14 AC 129 ms
76,012 KB
testcase_15 AC 123 ms
76,036 KB
testcase_16 AC 89 ms
76,108 KB
testcase_17 AC 92 ms
76,228 KB
testcase_18 AC 124 ms
76,124 KB
testcase_19 AC 123 ms
76,060 KB
testcase_20 AC 121 ms
76,140 KB
testcase_21 AC 124 ms
76,212 KB
testcase_22 AC 119 ms
76,072 KB
testcase_23 AC 122 ms
75,996 KB
testcase_24 AC 121 ms
76,184 KB
testcase_25 AC 126 ms
76,008 KB
testcase_26 AC 123 ms
76,220 KB
testcase_27 AC 104 ms
76,096 KB
testcase_28 AC 127 ms
76,292 KB
testcase_29 AC 129 ms
76,100 KB
testcase_30 AC 37 ms
53,088 KB
testcase_31 AC 36 ms
53,120 KB
testcase_32 AC 163 ms
76,180 KB
testcase_33 AC 123 ms
76,180 KB
testcase_34 AC 35 ms
53,796 KB
testcase_35 AC 170 ms
76,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()

n = len(s)
t = ""
for ss in s:
    t += ss
    t += '0'

def manacher(S):
    # 最長回文 O(n)
    # R[i] := i 文字目を中心とする最長の回文の半径(自身を含む)
    # 偶数長の回文を検出するには "$a$b$a$a$b$" のようにダミーを挟む
    # 検証: https://atcoder.jp/contests/wupc2019/submissions/8665857
    # 左右で違う条件: https://atcoder.jp/contests/code-thanks-festival-2014-a-open/submissions/12911822
    c, r, n = 0, 0, len(S)  # center, radius, length
    R = [0]*n
    while c < n:
        while c-r >= 0 and c+r < n and S[c-r] == S[c+r]:
            r += 1
        R[c] = r
        d = 1  # distance from center
        while c-d >= 0 and c+d < n and d+R[c-d] < r:
            R[c+d] = R[c-d]
            d += 1
        c += d
        r -= d
    return R

R = manacher(t)

def is_palindrome(x, y):
    l = 2 * x
    r = 2 * y
    mid = (l + r) // 2
    return R[mid] >= mid - l + 1

DP = [0 for _ in range(n + 1)]
DP[0] = 10**18
for i in range(n):
    for j in range(i, n):
        if is_palindrome(i, j):
            DP[j + 1] = max(DP[j + 1], min(DP[i], j - i + 1))
print(DP[n])
0