結果

問題 No.599 回文かい
ユーザー ei1333333ei1333333
提出日時 2017-11-24 23:05:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 410 ms / 4,000 ms
コード長 1,048 bytes
コンパイル時間 1,776 ms
コンパイル使用メモリ 201,308 KB
実行使用メモリ 198,812 KB
最終ジャッジ日時 2024-05-05 11:23:27
合計ジャッジ時間 4,671 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
8,216 KB
testcase_05 AC 3 ms
7,856 KB
testcase_06 AC 3 ms
8,248 KB
testcase_07 AC 3 ms
8,580 KB
testcase_08 AC 3 ms
8,336 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 167 ms
133,260 KB
testcase_11 AC 82 ms
103,200 KB
testcase_12 AC 185 ms
143,056 KB
testcase_13 AC 103 ms
108,060 KB
testcase_14 AC 288 ms
178,368 KB
testcase_15 AC 365 ms
191,852 KB
testcase_16 AC 365 ms
186,132 KB
testcase_17 AC 410 ms
198,812 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
evil_0.txt AC 253 ms
163,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

using int64 = long long;
const int mod = 1e9 + 7;

short LCP[10001][10001];

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

  for(int i = S.size() - 1; i >= 0; i--) {
    for(int j = S.size() - 1; j >= 0; j--) {
      LCP[i][j] = S[i] == S[j] ? LCP[i + 1][j + 1] + 1 : 0;
    }
  }


  int dp[10000] = {}; // dp[i]: [0, i) が分割済みのときの組み合わせ
  dp[0] = 1;
  for(int i = 0; i < S.size() / 2; i++) {
    int j = (int) S.size() - i - 1;
    // cout << "[0," << i << "]" << " [" << j << "," << S.size() - 1 << "]" << endl;
    int ret = 0;
    for(int k = i; k >= 0; k--) { // 前回の分割終了位置
      // [k, i]==[l,l+(i-k)] だったら遷移OK
      const int l = (int) S.size() - i - 1;
      if(LCP[k][l] >= i - k + 1) (ret += dp[k]) %= mod;
      // cout << "[" << k << "," << i << "]" << " [" << l << "," << l + (i - k) << "]" << endl;
    }
    dp[i + 1] = ret;
  }

  int all = 0;
  for(int i = 0; i < S.size(); i++) {
    (all += dp[i]) %= mod;
  }
  cout << all << endl;
}
0