結果

問題 No.599 回文かい
ユーザー ryoissyryoissy
提出日時 2017-11-24 23:10:09
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 82 ms / 4,000 ms
コード長 786 bytes
コンパイル時間 1,364 ms
コンパイル使用メモリ 158,840 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 11:25:38
合計ジャッジ時間 1,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 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 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 54 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 72 ms
5,376 KB
testcase_17 AC 82 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
evil_0.txt AC 24 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000007LL
using namespace std;
typedef long long ll;
typedef pair<int,int> P;

ll dp[10001];
ll Bp[10001];
ll hash2[10001];
ll B=103;

int main(void){
	int n;
	string str;
	cin >> str;
	n=str.size();
	Bp[0]=1;
	for(int i=0;i<n;i++){
		hash2[i+1]=hash2[i]*B%MOD;
		hash2[i+1]+=(ll)(str[i]-'a');
		hash2[i+1]%=MOD;
		Bp[i+1]=Bp[i]*B%MOD;
	}

	memset(dp,0,sizeof(dp));
	dp[0]=1;
	ll ans=0;
	for(int i=0;i<n;i++){
		if(dp[i]>0LL){
			ans=(ans+dp[i])%MOD;
			int rest=n-i*2;
			for(int len=0;len<rest/2;len++){
				ll ah=(hash2[i+len+1]-hash2[i]*Bp[len+1]%MOD+MOD)%MOD;
				ll bh=(hash2[n-i]-hash2[n-i-len-1]*Bp[len+1]%MOD+MOD)%MOD;
				if(ah==bh){
					dp[i+len+1]+=dp[i];
					dp[i+len+1]%=MOD;
				}
			}
		}
	}
	printf("%lld\n",ans);
	return 0;
}
0