結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー tailstails
提出日時 2023-02-03 22:32:12
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 2,948 ms
コンパイル使用メモリ 172,668 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-07-02 20:38:16
合計ジャッジ時間 8,697 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 87 ms
21,760 KB
testcase_04 AC 24 ms
12,032 KB
testcase_05 AC 15 ms
9,728 KB
testcase_06 AC 165 ms
27,648 KB
testcase_07 AC 146 ms
26,240 KB
testcase_08 AC 130 ms
25,216 KB
testcase_09 AC 137 ms
25,728 KB
testcase_10 AC 166 ms
27,648 KB
testcase_11 AC 129 ms
25,216 KB
testcase_12 AC 166 ms
27,392 KB
testcase_13 AC 167 ms
27,648 KB
testcase_14 AC 168 ms
27,520 KB
testcase_15 AC 150 ms
26,496 KB
testcase_16 AC 58 ms
18,048 KB
testcase_17 AC 75 ms
20,480 KB
testcase_18 AC 166 ms
27,648 KB
testcase_19 AC 166 ms
27,520 KB
testcase_20 AC 168 ms
27,648 KB
testcase_21 AC 169 ms
27,776 KB
testcase_22 AC 171 ms
27,648 KB
testcase_23 AC 167 ms
27,648 KB
testcase_24 AC 167 ms
27,648 KB
testcase_25 AC 168 ms
27,648 KB
testcase_26 WA -
testcase_27 AC 99 ms
22,656 KB
testcase_28 AC 169 ms
27,648 KB
testcase_29 AC 167 ms
27,648 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 126 ms
24,320 KB
testcase_33 AC 168 ms
27,648 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 125 ms
24,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

char s[5001];
int l;

char memo[5000][5000];

bool ispali(int a,int b){
	if(memo[a][b]){
		return memo[a][b]>0;
	}
	{
		bool z;
		if(a+1==b){
			z=true;
		}else if(a+2==b){
			z=s[a]==s[b-1];
		}else{
			z=ispali(a+1,b-1)&&s[a]==s[b-1];
		}
		memo[a][b]=z?1:-1;
		return z;
	}
}

int d[5001];

{
	rd(s@l);
	d[0]=l;
	rep(i,l){
		rep(j,i+1,l+1){
			if(ispali(i,j)){
				d[j]>?=min(d[i],j-i);
			}
		}
	}
	wt(d[l]);
}
0