結果

問題 No.464 PPAP
ユーザー face4face4
提出日時 2018-11-12 17:56:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 1,061 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 72,140 KB
実行使用メモリ 113,024 KB
最終ジャッジ日時 2024-06-06 03:44:13
合計ジャッジ時間 2,784 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 11 ms
15,104 KB
testcase_08 AC 10 ms
14,336 KB
testcase_09 AC 6 ms
12,544 KB
testcase_10 AC 314 ms
113,024 KB
testcase_11 AC 62 ms
52,480 KB
testcase_12 AC 207 ms
70,144 KB
testcase_13 AC 74 ms
51,840 KB
testcase_14 AC 258 ms
92,928 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 74 ms
51,840 KB
testcase_24 AC 147 ms
51,712 KB
testcase_25 AC 153 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

string s;
bool visit[5000][5000] = {}, memo[5000][5000] = {};

bool isPalindrome(int i, int j){
    if(visit[i][j]) return memo[i][j];

    visit[i][j] = true;
    
    if(i + 1 == j){
        return memo[i][j] = (s[i]==s[j]);
    }else{
        bool b = (s[i] == s[j]) && isPalindrome(i+1, j-1);
        return memo[i][j] = b;
    }
}

int main(){
    cin >> s;
    
    int n = s.length();
    vector<int> v[n], aft(n, 0);

    for(int i = 0; i < n; i++)  visit[i][i] = memo[i][i] = true;

    for(int i = 0; i < n; i++){
        for(int j = i; j < n-2; j++){
            if(isPalindrome(i,j))   v[i].push_back(j);
        }
    }

    for(int i = 0; i < n; i++){
        if(isPalindrome(i, n-1))    aft[i] = 1;
    }

    for(int i = n-2; i >= 0; i--)   aft[i] += aft[i+1];

    // 最悪計算量はO(n^2)なので間に合うはず...?
    long long ans = 0;
    for(int i : v[0]){
        for(int j : v[i+1]){
            ans += aft[j+2];
        }
    }

    cout << ans << endl;

    return 0;
}
0