結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-07-28 02:14:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,914 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 669,872 KB
最終ジャッジ日時 2024-07-28 02:15:02
合計ジャッジ時間 29,745 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,728 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 38 ms
52,864 KB
testcase_03 AC 1,136 ms
77,184 KB
testcase_04 AC 303 ms
76,416 KB
testcase_05 AC 240 ms
76,708 KB
testcase_06 AC 1,960 ms
78,108 KB
testcase_07 AC 1,780 ms
77,568 KB
testcase_08 AC 1,591 ms
77,724 KB
testcase_09 AC 1,636 ms
80,308 KB
testcase_10 TLE -
testcase_11 AC 1,585 ms
77,312 KB
testcase_12 AC 1,973 ms
78,028 KB
testcase_13 AC 1,956 ms
77,784 KB
testcase_14 TLE -
testcase_15 AC 1,866 ms
78,464 KB
testcase_16 AC 778 ms
77,312 KB
testcase_17 AC 1,002 ms
77,564 KB
testcase_18 AC 1,959 ms
77,532 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 1,963 ms
77,568 KB
testcase_22 AC 1,994 ms
77,708 KB
testcase_23 AC 1,978 ms
77,980 KB
testcase_24 AC 1,903 ms
80,304 KB
testcase_25 TLE -
testcase_26 AC 1,942 ms
77,640 KB
testcase_27 AC 1,238 ms
79,484 KB
testcase_28 TLE -
testcase_29 AC 1,953 ms
77,680 KB
testcase_30 AC 37 ms
53,108 KB
testcase_31 AC 65 ms
53,488 KB
testcase_32 MLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2204

B = 30
H = 9007199254740997

def main():
    S = input()
    # 後ろからの累積で対応
    hash_array = [0] * len(S)
    hs = 0
    for i in reversed(range(len(S))):
        hs *= B
        hs %= H
        hs += ord(S[i]) - ord("a") + 1
        hs %= H
        hash_array[i] = hs

    pow_b = [0] * (len(S) + 1)
    b = 1
    for i in range(len(S) + 1):
        pow_b[i] = b
        b *= B
        b %= H

    parindrome_map = {(i, i): 1 for i in range(len(S))}
    for i in range(len(S)):
        hs = 0
        for j in range(i, len(S)):
            hs *= B 
            hs %= H
            hs += ord(S[j]) - ord("a") + 1
            hs %= H
            # 偶数長
            k = j - i
            j_ = j + 1
            i_ = j_ + k
            if i_ < len(S):
                if i_ == len(S) - 1:
                    h = hash_array[j_]
                else:
                    h = (hash_array[j_] - (hash_array[i_ + 1] * pow_b[k + 1]) % H) % H
                if hs == h:
                    parindrome_map[(i, i_)] = (k + 1) * 2
            
            # 奇数長
            k = j - i
            j_ = j + 2
            i_ = j_ + k
            if i_ < len(S):
                if i_ == len(S) - 1:
                    h = hash_array[j_]
                else:
                    h = (hash_array[j_] - (hash_array[i_ + 1] * pow_b[k + 1]) % H) % H
                if hs == h:
                    parindrome_map[(i, i_)] = (k + 1) * 2 + 1

    dp = [0 for _ in range(len(S))]
    for i in range(len(S)):
        if (0, i) in parindrome_map:
            dp[i] = max(dp[i], parindrome_map[(0, i)])

        for j in range(i):
            if (j + 1, i) in parindrome_map:
                k = parindrome_map[(j + 1, i)]
                dp[i] = max(dp[i], min(dp[j], k))

    print(dp[-1])



                        









if __name__ == '__main__':
    main()
0