結果

問題 No.599 回文かい
ユーザー shung11260shung11260
提出日時 2019-10-15 18:09:30
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 1,587 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 63,680 KB
実行使用メモリ 675,320 KB
最終ジャッジ日時 2023-08-28 17:21:03
合計ジャッジ時間 8,050 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 3 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 3 ms
4,596 KB
testcase_11 AC 3 ms
4,704 KB
testcase_12 AC 7 ms
7,528 KB
testcase_13 AC 11 ms
11,056 KB
testcase_14 MLE -
testcase_15 AC 90 ms
39,948 KB
testcase_16 MLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
evil_0.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>

const long long int MOD=1e9+7;
const long long int BASE=31;

using namespace std;

vector<long long int> memo(10101, 0);
vector<long long int> memd(10101, 0);

struct RollingHush {
    vector<long long int> hash;
    vector<long long int> power;
    string str;
    
    RollingHush(string s) : hash(s.size()+1), power(s.size()+1) {
        str=s;
        hash[0]=0;
        power[0]=1;
        for(int si=0; si<s.size(); si++) {
            long long int s2lli=s[si];
            s2lli %= BASE;
            
            hash[si+1] = (hash[si]*BASE+s2lli)%MOD;
            power[si+1] = power[si]*BASE%MOD;
        }
    }
    
    long long int get(int left, int right) {
        return ((hash[right]-hash[left]*power[right-left])%MOD+MOD)%MOD;
    }

    int size() {
        return str.size();
    }
};

long long int count_kaibunkai(RollingHush rh, int left, int right) {
    long long int count=1;
    if(right-left<=1) {
        memd[left]=1;
        return memo[left]=count;
    }
    if(memd[left]) {
        return memo[left];
    }

    int l=left+1, r=right-1;
    while(l<=r) {
        if(rh.get(left, l)==rh.get(r, right)) {
            count += count_kaibunkai(rh, l, r)%MOD;
        }
        l++;
        r--;
    }
    memd[left]=1;
    return memo[left]=count%MOD;
}

int main() {
    string str;
    cin >> str;

    // memo.assign(str.size()/2+1, 0);
    // memd.assign(str.size()/2+1, 0);
    
    RollingHush rh_str(str);
    
    cout << count_kaibunkai(rh_str, 0, str.size()) << endl;

    return 0;
    
}
0