結果
問題 | No.599 回文かい |
ユーザー | veqcc |
提出日時 | 2019-08-11 15:20:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,195 bytes |
コンパイル時間 | 1,036 ms |
コンパイル使用メモリ | 78,728 KB |
実行使用メモリ | 101,248 KB |
最終ジャッジ日時 | 2024-09-13 20:05:58 |
合計ジャッジ時間 | 6,446 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
evil_0.txt | RE | - |
ソースコード
#include <iostream> #include <string> #include <vector> typedef long long ll; using namespace std; const ll MOD = 1000000007LL; // Z Algorithm // 最長共通prefix長列を返す // 計算量: O(|S|) // アルゴリズム // k > r -> それまで計算したzの結果は利用できず、ナイーブに計算する // z[k-l] < r-k+1 -> S[0:r-l] == S[l:r] であり、kがすっぽり入っているので一発 // z[k-l] >= r-k+1 -> S[0:r-k+1] == S[k:r] であるので、追加分を計算する vector <int> ZAlgorithm(const string& S) { int N = S.size(); vector<int> z(N); z[0] = -1; int l = 0, r = 0; for (int k = 1; k < N; k++) { if (k > r) { int i = 0; while (k + i < N && S[i] == S[k + i]) i++; l = k; r = k + i - 1; z[k] = i; } else if (z[k - l] < r - k + 1) { z[k] = z[k - l]; } else if (z[k - l] >= r - k + 1) { int i = r - k + 1; while (k + i < N && S[i] == S[k + i]) i++; l = k; r = k + i - 1; z[k] = i; } } return z; } // verified (TLE) // https://yukicoder.me/problems/no/430 void yuki430() { string S, C; int M, ans = 0; cin >> S >> M; while (M--) { cin >> C; vector <int> Z = ZAlgorithm(C + S); for (int i = C.size(); i < Z.size(); i++) if (Z[i] >= C.size()) ans++; } cout << ans << "\n"; } // verified // https://yukicoder.me/problems/no/599 vector <ll> dp(10005); vector <bool> used(10005, false); vector <vector<int>> Z(10005); ll dfs(const string S, int L, int R) { if (R <= L) return 1; if (used[L]) return dp[L]; vector <int> z = Z[L]; ll ret = 1; int l = 1, r = R - L - 1; while (l <= r) { if (z[r] == l) ret = (ret + dfs(S, L + l, L + r)) % MOD; l++; r--; } used[L] = true; return dp[L] = ret; } void yuki599() { string s; cin >> s; int sz = s.size(); for (int i = 0; sz - 2 * i >= 0; i++) Z[i] = ZAlgorithm(s.substr(i, sz - 2 * i)); cout << dfs(s, 0, sz) << '\n'; } int main() { // yuki430(); yuki599(); return 0; }