結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー roarisroaris
提出日時 2023-02-03 22:24:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 1,284 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 203,776 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-07-02 20:27:36
合計ジャッジ時間 3,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 15 ms
17,536 KB
testcase_04 AC 5 ms
6,656 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 19 ms
27,648 KB
testcase_07 AC 17 ms
25,088 KB
testcase_08 AC 15 ms
23,168 KB
testcase_09 AC 18 ms
24,168 KB
testcase_10 AC 19 ms
27,520 KB
testcase_11 AC 17 ms
23,172 KB
testcase_12 AC 21 ms
27,264 KB
testcase_13 AC 20 ms
27,776 KB
testcase_14 AC 20 ms
27,520 KB
testcase_15 AC 18 ms
25,856 KB
testcase_16 AC 10 ms
12,716 KB
testcase_17 AC 11 ms
15,580 KB
testcase_18 AC 19 ms
27,520 KB
testcase_19 AC 18 ms
27,648 KB
testcase_20 AC 18 ms
27,648 KB
testcase_21 AC 19 ms
27,520 KB
testcase_22 AC 19 ms
27,648 KB
testcase_23 AC 18 ms
27,648 KB
testcase_24 AC 19 ms
27,520 KB
testcase_25 AC 21 ms
27,648 KB
testcase_26 AC 26 ms
27,676 KB
testcase_27 AC 23 ms
19,152 KB
testcase_28 AC 18 ms
27,648 KB
testcase_29 AC 19 ms
27,648 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 16 ms
21,676 KB
testcase_33 AC 20 ms
27,520 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 64 ms
21,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i=0; i<n; i++)
#define pb push_back
typedef long long ll;

vector<int> manacher(string s) {
    int n = s.size();
    vector<int> res(n);
    int i = 0;
    int j = 0;
    while (i<n) {
        while (i-j>=0 && i+j<n && s[i-j]==s[i+j]) j++;
        res[i] = j;
        int k = 1;
        while (i-k>=0 && k+res[i-k]<j) {
            res[i+k] = res[i-k];
            k += 1;
        }
        i += k;
        j -= k;
    }
    return res;
}

int main() {
    cin.tie(0); ios::sync_with_stdio(false);
    
    string S; cin >> S;
    string T;
    for (char c : S) {
        T += '&';
        T += c;
    }
    vector<int> mana = manacher(T);
    int n = S.size();
    bool is_pal[n][n+1];
    rep(l, n) for (int r=l+1; r<=n; r++) {
        int center = l+r;
        is_pal[l][r] = 2*r-1<center+mana[center];
    }
    
    int ok = 1;
    int ng = n+10;
    while (abs(ok-ng)>1) {
        int mid = (ok+ng)/2;
        bool dp[n+1];
        fill(dp, dp+n+1, false);
        dp[0] = true;
        rep(i, n) {
            if (!dp[i]) continue;
            for (int j=i+mid; j<=n; j++) if (is_pal[i][j]) dp[j] = true;
        }
        if (dp[n]) ok = mid;
        else ng = mid;
    }
    
    cout << ok << endl;
}
0