結果

問題 No.599 回文かい
ユーザー たこしたこし
提出日時 2017-11-24 22:40:20
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 215 ms / 4,000 ms
コード長 1,004 bytes
コンパイル時間 1,298 ms
コンパイル使用メモリ 158,296 KB
実行使用メモリ 199,552 KB
最終ジャッジ日時 2024-11-27 07:33:30
合計ジャッジ時間 4,525 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define INF 1145141919
#define INF_LL 114514191981036
using LL = long long int;
using ULL = unsigned long long int;
#define II pair<int, int>

using namespace std;

string S;
const LL mod = 1000000007;
const int MAX_S = 10005;

LL dp[MAX_S/2][MAX_S/2];

ULL Hash[MAX_S];
ULL BaseB[MAX_S];
ULL Base = 1000000000000009;

void reg()
{
  BaseB[0] = 1;
  for (size_t i = 0; i < S.length(); i++) {
    Hash[i+1] = Hash[i] * Base;
    Hash[i+1] += S[i];
    BaseB[i+1] = BaseB[i] * Base;
  }
}

ULL calc(int l, int r)
{
  return Hash[r] - Hash[l] * BaseB[r-l];
}

LL solve(int l, int r)
{
  if(dp[l][r - S.length()/2] != -1) {
    return dp[l][r - S.length()/2];
  }

  LL ret = 1;

  for (size_t i = 1; l+i <= r-i; i++) {
    if(calc(l, l+i) == calc(r-i, r)) {
      ret += solve(l+i, r-i);
      ret %= mod;
    }
  }

  return dp[l][r - S.length()/2] = ret;
}

int main()
{
  cin >> S;
  memset(dp, -1, sizeof(dp));

  reg();

  cout << solve(0, S.length()) << endl;

  return 0;
}
0