結果

問題 No.464 PPAP
ユーザー pekempeypekempey
提出日時 2016-12-16 15:36:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 1,496 bytes
コンパイル時間 1,583 ms
コンパイル使用メモリ 171,060 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 16:06:28
合計ジャッジ時間 2,525 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 16 ms
6,944 KB
testcase_11 AC 12 ms
6,940 KB
testcase_12 AC 18 ms
6,940 KB
testcase_13 AC 18 ms
6,944 KB
testcase_14 AC 17 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 18 ms
6,940 KB
testcase_24 AC 18 ms
6,944 KB
testcase_25 AC 19 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

class Manacher {
private:
    const string &s;
    vector<int> rad;

public:
    Manacher(const string &s) : s(s), rad(s.size() * 2 - 1) {
        const int n = rad.size();
        int i = 0;
        int j = 0;
        while (i < n) {
            while (i - j >= 0 && i + j < n && get(i - j) == get(i + j)) {
                j++;
            }
            rad[i] = j;
            int k = 1;
            while (i - k >= 0 && i + k < n && k + rad[i - k] < j) {
                rad[i + k] = rad[i - k];
                k++;
            }
            i += k;
            j -= k;
        }
    }

    // [l,r)
    bool isPalindrome(int l, int r) {
        return rad[l + r - 1] >= r - l;
    }

private:
    char get(int k) {
        return k % 2 == 0 ? s[k / 2] : '$';
    }
};

int main() {
    string s;
    cin >> s;
    int n = s.size();
    Manacher mana(s);

    vector<int64_t> P(n + 1);
    for (int i = 1; i < n; i++) {
        if (mana.isPalindrome(0, i)) {
            P[i]++;
        }
    }
    vector<int64_t> PP(n + 1);
    for (int i = 0; i < n; i++) {
        for (int j = i + 1; j < n; j++) {
            if (mana.isPalindrome(i, j)) {
                PP[j + 1] += P[i];
            }
        }
    }
    for (int i = 0; i < n; i++) {
        PP[i + 1] += PP[i];
    }
    int64_t PPAP = 0;
    for (int i = 0; i < n; i++) {
        if (mana.isPalindrome(i, n)) {
            PPAP += PP[i];
        }
    }
    cout << PPAP << endl;
}
0