結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー HydruHydru
提出日時 2023-02-03 22:12:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 623 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,944 KB
最終ジャッジ日時 2024-07-02 20:13:21
合計ジャッジ時間 27,150 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,728 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 535 ms
76,160 KB
testcase_04 AC 205 ms
76,416 KB
testcase_05 AC 137 ms
76,288 KB
testcase_06 AC 843 ms
76,160 KB
testcase_07 AC 752 ms
76,288 KB
testcase_08 AC 638 ms
76,672 KB
testcase_09 AC 1,743 ms
77,440 KB
testcase_10 AC 766 ms
76,160 KB
testcase_11 AC 617 ms
76,288 KB
testcase_12 AC 828 ms
76,160 KB
testcase_13 AC 832 ms
76,160 KB
testcase_14 AC 745 ms
76,160 KB
testcase_15 AC 849 ms
76,672 KB
testcase_16 AC 365 ms
76,416 KB
testcase_17 AC 409 ms
76,416 KB
testcase_18 AC 811 ms
76,032 KB
testcase_19 AC 822 ms
76,672 KB
testcase_20 AC 716 ms
76,416 KB
testcase_21 AC 879 ms
76,544 KB
testcase_22 AC 777 ms
76,160 KB
testcase_23 AC 783 ms
76,288 KB
testcase_24 TLE -
testcase_25 AC 829 ms
76,672 KB
testcase_26 AC 925 ms
76,160 KB
testcase_27 AC 1,414 ms
77,312 KB
testcase_28 AC 761 ms
76,288 KB
testcase_29 AC 836 ms
76,032 KB
testcase_30 AC 41 ms
51,584 KB
testcase_31 AC 41 ms
51,840 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()

n=len(S)

DP=[1 for _ in range(n+1)]

DP[0]=len(S)
s_to_n={chr(i+97):i for i in range(26)}

def is_kaibun(s):
    n=len(s)
    for i in range(n//2):
        if s[i]!=s[n-1-i]:
            return 0
    return 1

for i in range(n):
    cnt=1<<s_to_n[S[i]]
    for j in range(i+1,n):
        s=S[j]
        cnt^=1<<s_to_n[s]
        if (j+i)%2==0 and cnt^(1<<s_to_n[S[(i+j)//2]])==0:
            if is_kaibun(S[i:j+1]):
                DP[j+1]=max(min(DP[i],j-i+1),DP[j+1])
        elif (j+i)%2==1 and cnt==0:
            if is_kaibun(S[i:j+1]):
                DP[j+1]=max(min(DP[i],j-i+1),DP[j+1])

print(DP[-1])
0