結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー tnakao0123tnakao0123
提出日時 2023-04-22 22:49:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 43,776 KB
実行使用メモリ 27,264 KB
最終ジャッジ日時 2024-11-07 10:03:27
合計ジャッジ時間 4,972 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 72 ms
21,248 KB
testcase_04 AC 14 ms
11,648 KB
testcase_05 AC 7 ms
9,344 KB
testcase_06 AC 126 ms
27,260 KB
testcase_07 AC 118 ms
25,856 KB
testcase_08 AC 106 ms
24,832 KB
testcase_09 AC 107 ms
25,344 KB
testcase_10 AC 133 ms
27,136 KB
testcase_11 AC 103 ms
24,832 KB
testcase_12 AC 128 ms
27,136 KB
testcase_13 AC 129 ms
27,264 KB
testcase_14 AC 128 ms
27,136 KB
testcase_15 AC 122 ms
26,112 KB
testcase_16 AC 45 ms
17,792 KB
testcase_17 AC 64 ms
20,096 KB
testcase_18 AC 130 ms
27,136 KB
testcase_19 AC 128 ms
27,136 KB
testcase_20 AC 133 ms
27,136 KB
testcase_21 AC 133 ms
27,264 KB
testcase_22 AC 130 ms
27,264 KB
testcase_23 AC 131 ms
27,264 KB
testcase_24 AC 132 ms
27,136 KB
testcase_25 AC 126 ms
27,136 KB
testcase_26 AC 130 ms
27,136 KB
testcase_27 AC 81 ms
22,400 KB
testcase_28 AC 130 ms
27,136 KB
testcase_29 AC 128 ms
27,136 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 99 ms
23,808 KB
testcase_33 AC 132 ms
27,136 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 98 ms
23,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2204.cc:  No.2204 Palindrome Splitting (No Rearrangement ver.) - yukicoder
 */

#include<cstdio>
#include<cstring>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 5000;
const int INF = 1 << 30;

/* typedef */

/* global variables */

char s[MAX_N + 4];
bool ps[MAX_N + 1][MAX_N + 1];
int dp[MAX_N + 1];

/* subroutines */

/* main */

int main() {
  scanf("%s", s);
  int n = strlen(s);

  for (int i = 0; i <= n; i++) ps[i][i] = true;
  for (int i = 0; i < n; i++) ps[i][i + 1] = true;
  for (int l = 2; l <= n; l++)
    for (int i = 0, j = l; j <= n; i++, j++)
      ps[i][j] = (ps[i + 1][j - 1] && s[i] == s[j - 1]);

  dp[0] = INF;
  for (int i = 0; i < n; i++)
    for (int j = i + 1; j <= n; j++)
      if (ps[i][j])
	dp[j] = max(dp[j], min(dp[i], j - i));
  
  printf("%d\n", dp[n]);
  return 0;
}
0