結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-07-28 02:18:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,907 ms / 2,000 ms
コード長 1,775 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 286,508 KB
最終ジャッジ日時 2024-07-28 02:19:21
合計ジャッジ時間 36,000 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,076 KB
testcase_01 AC 33 ms
53,372 KB
testcase_02 AC 34 ms
54,004 KB
testcase_03 AC 770 ms
77,244 KB
testcase_04 AC 232 ms
76,460 KB
testcase_05 AC 163 ms
76,824 KB
testcase_06 AC 1,262 ms
77,184 KB
testcase_07 AC 1,141 ms
77,156 KB
testcase_08 AC 1,055 ms
76,792 KB
testcase_09 AC 1,090 ms
77,364 KB
testcase_10 AC 1,228 ms
77,000 KB
testcase_11 AC 1,031 ms
76,868 KB
testcase_12 AC 1,229 ms
77,188 KB
testcase_13 AC 1,242 ms
77,092 KB
testcase_14 AC 1,226 ms
76,792 KB
testcase_15 AC 1,145 ms
76,920 KB
testcase_16 AC 508 ms
76,628 KB
testcase_17 AC 679 ms
76,524 KB
testcase_18 AC 1,238 ms
76,784 KB
testcase_19 AC 1,252 ms
76,824 KB
testcase_20 AC 1,252 ms
76,780 KB
testcase_21 AC 1,256 ms
77,008 KB
testcase_22 AC 1,239 ms
77,100 KB
testcase_23 AC 1,283 ms
77,252 KB
testcase_24 AC 1,257 ms
77,040 KB
testcase_25 AC 1,254 ms
77,244 KB
testcase_26 AC 1,245 ms
77,364 KB
testcase_27 AC 852 ms
77,316 KB
testcase_28 AC 1,249 ms
77,040 KB
testcase_29 AC 1,251 ms
77,000 KB
testcase_30 AC 34 ms
53,420 KB
testcase_31 AC 35 ms
54,504 KB
testcase_32 AC 1,860 ms
286,508 KB
testcase_33 AC 1,272 ms
76,888 KB
testcase_34 AC 34 ms
52,480 KB
testcase_35 AC 1,907 ms
285,504 KB
権限があれば一括ダウンロードができます

ソースコード

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] 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_].append(i)
            
            # 奇数長
            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_].append(i)

    dp = [0 for _ in range(len(S))]
    for i in range(len(S)):
        for j in parindrome_map[i]:
            if j == 0:
                dp[i] = max(dp[i], i - j + 1)
            else:
                dp[i] = max(dp[i], min(dp[j - 1], i - j + 1))
    print(dp[-1])




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