結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー flygonflygon
提出日時 2023-02-03 22:20:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 709 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 315,648 KB
最終ジャッジ日時 2024-07-02 20:23:50
合計ジャッジ時間 4,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,656 KB
testcase_01 AC 42 ms
54,400 KB
testcase_02 AC 42 ms
54,912 KB
testcase_03 AC 65 ms
71,552 KB
testcase_04 AC 55 ms
67,456 KB
testcase_05 AC 58 ms
68,736 KB
testcase_06 AC 64 ms
72,576 KB
testcase_07 AC 63 ms
71,552 KB
testcase_08 AC 63 ms
71,680 KB
testcase_09 AC 71 ms
74,752 KB
testcase_10 AC 76 ms
75,044 KB
testcase_11 AC 65 ms
71,296 KB
testcase_12 AC 68 ms
72,576 KB
testcase_13 AC 66 ms
71,936 KB
testcase_14 AC 67 ms
72,584 KB
testcase_15 AC 69 ms
73,728 KB
testcase_16 AC 62 ms
70,204 KB
testcase_17 AC 64 ms
73,216 KB
testcase_18 AC 68 ms
74,496 KB
testcase_19 AC 74 ms
73,700 KB
testcase_20 AC 75 ms
74,880 KB
testcase_21 AC 66 ms
71,040 KB
testcase_22 AC 61 ms
70,784 KB
testcase_23 AC 63 ms
71,808 KB
testcase_24 AC 77 ms
77,860 KB
testcase_25 AC 67 ms
73,344 KB
testcase_26 AC 75 ms
77,772 KB
testcase_27 AC 74 ms
77,360 KB
testcase_28 AC 70 ms
74,112 KB
testcase_29 AC 58 ms
70,656 KB
testcase_30 AC 38 ms
54,144 KB
testcase_31 AC 39 ms
54,400 KB
testcase_32 AC 703 ms
315,648 KB
testcase_33 AC 66 ms
71,680 KB
testcase_34 AC 40 ms
54,656 KB
testcase_35 AC 709 ms
315,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd
s = list(input().rstrip())
n = len(s)
dr = [[] for i in range(n)]
for i in range(n):
  l, r= i,i
  for j in range(n):
    ll = l-j
    rr = r+j
    if ll < 0 or rr >= n: break
    if s[ll] == s[rr]:
      dr[rr].append(ll)
    else:
      break

for i in range(n-1):
  l, r = i, i+1
  for j in range(n):
    ll = l-j
    rr = r+j
    if ll < 0 or rr >= n: break
    if s[ll] == s[rr]:
      dr[rr].append(ll)
    else:
      break

dp = [1]*(n)
for i in range(1, n):
  for j in dr[i]:
    if j == 0:
      dp[i] = i+1
    else:
      dp[i] = max(dp[i],min(i-j+1, dp[j-1]))
print(dp[-1])
0