結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー Manuel1024Manuel1024
提出日時 2023-08-24 02:38:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 78,444 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-06-01 23:54:07
合計ジャッジ時間 2,285 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 10 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 19 ms
6,656 KB
testcase_07 AC 17 ms
6,272 KB
testcase_08 AC 15 ms
6,144 KB
testcase_09 AC 15 ms
6,360 KB
testcase_10 AC 19 ms
6,656 KB
testcase_11 AC 14 ms
6,016 KB
testcase_12 AC 19 ms
6,784 KB
testcase_13 AC 19 ms
6,784 KB
testcase_14 AC 18 ms
6,656 KB
testcase_15 AC 16 ms
6,528 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 19 ms
6,784 KB
testcase_19 AC 21 ms
6,656 KB
testcase_20 AC 18 ms
6,912 KB
testcase_21 AC 19 ms
6,784 KB
testcase_22 AC 19 ms
6,784 KB
testcase_23 AC 18 ms
6,656 KB
testcase_24 AC 19 ms
6,656 KB
testcase_25 AC 17 ms
6,784 KB
testcase_26 AC 17 ms
6,784 KB
testcase_27 AC 26 ms
5,632 KB
testcase_28 AC 18 ms
6,912 KB
testcase_29 AC 20 ms
6,784 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 43 ms
5,888 KB
testcase_33 AC 19 ms
6,656 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 43 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;

int main(){
    string s; cin >> s;
    const int n = s.size();
    vector<vector<bool>> ispalindrome(n+1, vector<bool>(n+1, false));
    for(int i = 0; i < n; i++){
        for(int j = 0; 0 <= i-j && i+j < n; j++){
            if(s[i-j] != s[i+j]) break;
            ispalindrome[i-j][i+j+1] = true;
        }
        if(i+1 < n && s[i] == s[i+1]){
            for(int j = 0; 0 <= i-j && i+j+1 < n; j++){
                if(s[i-j] != s[i+j+1]) break;
                ispalindrome[i-j][i+j+2] = true;
            }
        }
    }

    vector<int> dp(n+1, -(1 << 30));
    dp[0] = 1 << 30;
    for(int i = 0; i < n; i++){
        for(int j = 0; j <= i; j++){
            if(ispalindrome[j][i+1]){
                dp[i+1] = max(dp[i+1], min(dp[j], i+1-j));
            }
        }
        // cerr << dp[i+1] << " ";
    }
    cout << dp[n] << endl;
    return 0;
}
0