結果

問題 No.599 回文かい
ユーザー hogehogejapanhogehogejapan
提出日時 2022-06-03 14:19:26
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 168 ms / 4,000 ms
コード長 1,329 bytes
コンパイル時間 3,285 ms
コンパイル使用メモリ 128,896 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-21 02:17:52
合計ジャッジ時間 2,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 45 ms
6,940 KB
testcase_11 AC 27 ms
6,940 KB
testcase_12 AC 54 ms
6,944 KB
testcase_13 AC 31 ms
6,940 KB
testcase_14 AC 77 ms
6,944 KB
testcase_15 AC 89 ms
6,940 KB
testcase_16 AC 144 ms
6,944 KB
testcase_17 AC 168 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
evil_0.txt AC 68 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <vector>
using ll = long long;
using namespace std;
struct RollingHash {
	static constexpr int M = 2;
	static constexpr long long MODS[M] = {999999937, 1000000007};
	static constexpr long long BASE = 9973;
	vector<long long> powb[M], hash[M];
	int n;
	RollingHash() {}
	RollingHash(const string& str) {init(str);}
	void init(const string& str) {
		n = str.size();
		for (int k = 0; k < M; k++) {
			powb[k].resize(n+1, 1);
			hash[k].resize(n+1, 0);
			for (int i = 0; i < n; i++) {
				hash[k][i+1] = (hash[k][i] * BASE + str[i]) % MODS[k];
				powb[k][i+1] = powb[k][i] * BASE % MODS[k];
			}
		}
	}
	long long get(int l, int r, int k) {
		long long res = hash[k][r] - hash[k][l] * powb[k][r-l] % MODS[k];
		if (res < 0) res += MODS[k];
		return res;
	}
};
bool match(RollingHash& rh1, ll l1, ll r1, RollingHash& rh2, ll l2, ll r2) {
	bool res = true;
	for (int k  = 0; k < RollingHash::M; k++) {
		res &= rh1.get(l1, r1, k) == rh2.get(l2, r2, k);
	}
	return res;
}

ll M = pow(10, 9) + 7;
int main() {
	string s; cin >> s;
	ll n = s.size();
	RollingHash h(s);
	vector<ll> dp(n/2 + 1, 0);
	dp[n/2] = 1;
	for (ll i = n/2 - 1; i >= 0; i--) {
		dp[i] = 1;
		for (ll l = i+1; l <= n/2; l++) {
			if (match(h, i, l, h, n-l, n-i)) (dp[i] += dp[l]) %= M;
		}
	}
	cout << dp[0] << endl;
}
0