結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー Manuel1024Manuel1024
提出日時 2023-08-24 02:38:05
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 804 ms
コンパイル使用メモリ 77,908 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-12-22 15:09:10
合計ジャッジ時間 2,644 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 12 ms
5,632 KB
testcase_04 AC 5 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 22 ms
6,784 KB
testcase_07 AC 18 ms
6,492 KB
testcase_08 AC 16 ms
6,144 KB
testcase_09 AC 17 ms
6,360 KB
testcase_10 AC 20 ms
6,784 KB
testcase_11 AC 16 ms
6,144 KB
testcase_12 AC 20 ms
6,816 KB
testcase_13 AC 21 ms
6,784 KB
testcase_14 AC 22 ms
6,816 KB
testcase_15 AC 19 ms
6,528 KB
testcase_16 AC 9 ms
5,248 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 21 ms
6,784 KB
testcase_19 AC 20 ms
6,784 KB
testcase_20 AC 20 ms
6,656 KB
testcase_21 AC 20 ms
6,784 KB
testcase_22 AC 20 ms
6,784 KB
testcase_23 AC 21 ms
6,784 KB
testcase_24 AC 22 ms
6,912 KB
testcase_25 AC 20 ms
6,816 KB
testcase_26 AC 21 ms
6,784 KB
testcase_27 AC 27 ms
5,632 KB
testcase_28 AC 19 ms
6,820 KB
testcase_29 AC 20 ms
6,784 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 50 ms
6,144 KB
testcase_33 AC 20 ms
6,820 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 50 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