結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-07-13 07:36:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 2,988 ms
コンパイル使用メモリ 250,552 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-09-14 19:21:09
合計ジャッジ時間 6,375 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 54 ms
60,032 KB
testcase_04 AC 14 ms
16,512 KB
testcase_05 AC 8 ms
10,624 KB
testcase_06 AC 92 ms
101,120 KB
testcase_07 AC 81 ms
90,624 KB
testcase_08 AC 75 ms
82,432 KB
testcase_09 AC 78 ms
86,528 KB
testcase_10 AC 90 ms
101,248 KB
testcase_11 AC 74 ms
82,432 KB
testcase_12 AC 89 ms
100,096 KB
testcase_13 AC 90 ms
101,248 KB
testcase_14 AC 91 ms
101,248 KB
testcase_15 AC 82 ms
93,184 KB
testcase_16 AC 36 ms
40,320 KB
testcase_17 AC 46 ms
52,352 KB
testcase_18 AC 90 ms
101,248 KB
testcase_19 AC 92 ms
101,120 KB
testcase_20 AC 92 ms
101,248 KB
testcase_21 AC 91 ms
101,120 KB
testcase_22 AC 90 ms
101,120 KB
testcase_23 AC 90 ms
101,120 KB
testcase_24 AC 91 ms
101,248 KB
testcase_25 AC 91 ms
101,120 KB
testcase_26 AC 90 ms
101,120 KB
testcase_27 AC 59 ms
66,432 KB
testcase_28 AC 90 ms
101,120 KB
testcase_29 AC 90 ms
101,120 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 159 ms
76,672 KB
testcase_33 AC 90 ms
101,120 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 160 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
 
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define db double
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
	sr s;cin>>s;
	int n=s.size();
	vc ok(n,vc<int>(n,false));
	rep(i,n){
		int l=i,r=i;
		while(l>=0&&r<n&&s[l]==s[r]){
			ok[l][r]=true;
			l--,r++;
		}
	}
	rep(i,n-1){
		int l=i,r=i+1;
		while(l>=0&&r<n&&s[l]==s[r]){
			ok[l][r]=true;
			l--,r++;
		}
	}
	vc<int>dp(n+1,0);
	dp[0]=1e9;
	rep(i,n)for(int j=i+1;j<=n;j++)if(ok[i][j-1]){
		int d=j-i;
		dp[j]=max(dp[j],min(dp[i],d));
	}
	cout<<dp[n];
}
	
0