結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー i_am_noobi_am_noob
提出日時 2023-02-12 03:05:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 1,690 ms
コンパイル使用メモリ 200,784 KB
実行使用メモリ 27,716 KB
最終ジャッジ日時 2024-07-08 12:16:52
合計ジャッジ時間 3,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 12 ms
22,108 KB
testcase_04 AC 4 ms
12,568 KB
testcase_05 AC 4 ms
10,332 KB
testcase_06 AC 15 ms
27,624 KB
testcase_07 AC 13 ms
27,008 KB
testcase_08 AC 12 ms
27,008 KB
testcase_09 AC 13 ms
26,664 KB
testcase_10 AC 14 ms
27,528 KB
testcase_11 AC 12 ms
26,092 KB
testcase_12 AC 15 ms
27,512 KB
testcase_13 AC 14 ms
27,508 KB
testcase_14 AC 14 ms
27,516 KB
testcase_15 AC 13 ms
26,968 KB
testcase_16 AC 7 ms
18,468 KB
testcase_17 AC 9 ms
22,408 KB
testcase_18 AC 14 ms
27,296 KB
testcase_19 AC 14 ms
27,552 KB
testcase_20 AC 13 ms
27,440 KB
testcase_21 AC 14 ms
27,716 KB
testcase_22 AC 14 ms
27,600 KB
testcase_23 AC 15 ms
27,604 KB
testcase_24 AC 14 ms
27,428 KB
testcase_25 AC 14 ms
27,124 KB
testcase_26 AC 14 ms
27,540 KB
testcase_27 AC 11 ms
24,564 KB
testcase_28 AC 14 ms
27,496 KB
testcase_29 AC 14 ms
27,400 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 42 ms
25,036 KB
testcase_33 AC 14 ms
27,524 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 42 ms
25,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using pii=pair<int,int>;

#define all(a) a.begin(),a.end()
#define pb push_back
#define sz(a) ((int)a.size())

const int maxn=5005;
int n,dp[maxn];
string s;
bool a[maxn][maxn];

signed main(){
    ios_base::sync_with_stdio(0),cin.tie(0);
    cin >> s; n=s.size();
    for(int i=0; i<=2*n-2; ++i){
        int l=i/2,r=i-l;
        while(l>=0&&r<n&&s[l]==s[r]) a[r][l]=1,l--,r++;
    }
    dp[0]=n+1;
    for(int i=0; i<n; ++i){
        dp[i+1]=-1;
        for(int j=0; j<=i; ++j) if(a[i][j]) dp[i+1]=max(dp[i+1],min(dp[j],i-j+1));
    }
    cout << dp[n] << "\n";
}
0