結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー flygonflygon
提出日時 2023-02-03 22:18:34
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 848 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 514,884 KB
最終ジャッジ日時 2024-07-02 20:22:09
合計ジャッジ時間 6,953 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,032 KB
testcase_01 AC 39 ms
54,656 KB
testcase_02 AC 43 ms
54,400 KB
testcase_03 AC 79 ms
77,952 KB
testcase_04 AC 59 ms
70,144 KB
testcase_05 AC 64 ms
70,528 KB
testcase_06 AC 72 ms
78,080 KB
testcase_07 AC 74 ms
78,208 KB
testcase_08 AC 66 ms
74,764 KB
testcase_09 AC 76 ms
79,360 KB
testcase_10 AC 77 ms
78,176 KB
testcase_11 AC 66 ms
74,496 KB
testcase_12 AC 73 ms
77,892 KB
testcase_13 AC 71 ms
77,716 KB
testcase_14 AC 76 ms
78,080 KB
testcase_15 AC 78 ms
77,968 KB
testcase_16 AC 66 ms
73,088 KB
testcase_17 AC 75 ms
78,080 KB
testcase_18 AC 76 ms
78,336 KB
testcase_19 AC 76 ms
78,336 KB
testcase_20 AC 82 ms
78,540 KB
testcase_21 AC 72 ms
74,624 KB
testcase_22 AC 67 ms
74,240 KB
testcase_23 AC 74 ms
77,832 KB
testcase_24 AC 82 ms
79,872 KB
testcase_25 AC 80 ms
78,208 KB
testcase_26 AC 78 ms
78,080 KB
testcase_27 AC 81 ms
79,200 KB
testcase_28 AC 79 ms
78,848 KB
testcase_29 AC 67 ms
73,856 KB
testcase_30 AC 40 ms
54,528 KB
testcase_31 AC 41 ms
54,912 KB
testcase_32 MLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

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)
pal = set()
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]:
      pal.add((ll,rr))
    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]:
      pal.add((ll,rr))
    else:
      break

dr = defaultdict(list)
for l,r in pal:
  dr[r].append(l)
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