結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー Yifan KangYifan Kang
提出日時 2023-05-10 04:04:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 1,839 ms
コンパイル使用メモリ 166,996 KB
実行使用メモリ 70,272 KB
最終ジャッジ日時 2024-05-04 20:38:44
合計ジャッジ時間 7,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 84 ms
46,336 KB
testcase_04 AC 21 ms
17,024 KB
testcase_05 AC 11 ms
12,288 KB
testcase_06 AC 221 ms
69,504 KB
testcase_07 AC 149 ms
64,640 KB
testcase_08 AC 136 ms
60,288 KB
testcase_09 AC 175 ms
62,592 KB
testcase_10 AC 182 ms
70,272 KB
testcase_11 AC 141 ms
59,904 KB
testcase_12 AC 167 ms
69,248 KB
testcase_13 AC 173 ms
69,888 KB
testcase_14 AC 179 ms
70,272 KB
testcase_15 AC 174 ms
66,176 KB
testcase_16 AC 50 ms
33,920 KB
testcase_17 AC 112 ms
41,856 KB
testcase_18 AC 172 ms
70,016 KB
testcase_19 AC 188 ms
70,272 KB
testcase_20 AC 181 ms
70,016 KB
testcase_21 AC 171 ms
69,760 KB
testcase_22 AC 178 ms
70,144 KB
testcase_23 AC 178 ms
70,016 KB
testcase_24 AC 217 ms
70,272 KB
testcase_25 AC 185 ms
70,144 KB
testcase_26 AC 166 ms
69,760 KB
testcase_27 AC 124 ms
51,072 KB
testcase_28 AC 235 ms
70,272 KB
testcase_29 AC 164 ms
69,888 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 177 ms
57,216 KB
testcase_33 AC 234 ms
70,016 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 171 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