結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー Yifan KangYifan Kang
提出日時 2023-05-10 04:04:33
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 1,485 ms
コンパイル使用メモリ 167,252 KB
実行使用メモリ 70,144 KB
最終ジャッジ日時 2024-11-26 10:53:01
合計ジャッジ時間 8,060 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 105 ms
46,336 KB
testcase_04 AC 18 ms
16,896 KB
testcase_05 AC 11 ms
12,288 KB
testcase_06 AC 229 ms
69,492 KB
testcase_07 AC 183 ms
64,512 KB
testcase_08 AC 165 ms
60,152 KB
testcase_09 AC 220 ms
62,592 KB
testcase_10 AC 224 ms
70,100 KB
testcase_11 AC 166 ms
59,888 KB
testcase_12 AC 211 ms
69,228 KB
testcase_13 AC 214 ms
69,760 KB
testcase_14 AC 228 ms
70,080 KB
testcase_15 AC 206 ms
66,176 KB
testcase_16 AC 66 ms
33,664 KB
testcase_17 AC 104 ms
41,984 KB
testcase_18 AC 212 ms
69,888 KB
testcase_19 AC 229 ms
70,116 KB
testcase_20 AC 218 ms
70,016 KB
testcase_21 AC 211 ms
69,728 KB
testcase_22 AC 216 ms
70,040 KB
testcase_23 AC 218 ms
69,980 KB
testcase_24 AC 266 ms
70,144 KB
testcase_25 AC 228 ms
70,048 KB
testcase_26 AC 207 ms
69,468 KB
testcase_27 AC 161 ms
50,944 KB
testcase_28 AC 225 ms
70,072 KB
testcase_29 AC 212 ms
69,760 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 218 ms
57,216 KB
testcase_33 AC 218 ms
70,076 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 223 ms
57,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,a,b) for(int i=(a);i<=(b);++i)
#define per(i,a,b) for(int i=(a);i>=(b);--i)
#define pii pair<int,int>
#define vi vector<int>
#define fi first
#define se second
#define pb push_back
#define ALL(x) x.begin(),x.end()
#define sz(x) int(x.size())
#define ll long long
using namespace std;
const int N = 5e3 + 5;
int n,ok[N][N],dp[N];
char s[N];
int main(){
    cin.tie(0)->sync_with_stdio(0);
    cin >> (s + 1);
    while(s[n + 1])n++;
    dp[0] = n;
    rep(i,1,n)ok[i][i] = 1;
    rep(len,2,n)rep(i,1,n){
        int j = i + len - 1;
        if(len == 2 && s[i] == s[j])ok[i][j] = 1;
        if(len > 2 && s[i] == s[j])ok[i][j] = ok[i + 1][j - 1];
    }
    rep(i,1,n)rep(j,1,i){
        if(ok[j][i])dp[i] = max(dp[i],min(dp[j - 1],i - j + 1));
    }
    cout << dp[n] << endl;
    return 0;
}
0