結果
問題 | No.599 回文かい |
ユーザー | illanasty |
提出日時 | 2021-12-23 21:49:07 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 388 ms / 4,000 ms |
コード長 | 1,894 bytes |
コンパイル時間 | 1,549 ms |
コンパイル使用メモリ | 143,584 KB |
実行使用メモリ | 199,360 KB |
最終ジャッジ日時 | 2024-09-17 20:39:43 |
合計ジャッジ時間 | 4,323 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 118 ms
95,744 KB |
testcase_11 | AC | 70 ms
57,472 KB |
testcase_12 | AC | 130 ms
108,116 KB |
testcase_13 | AC | 78 ms
63,744 KB |
testcase_14 | AC | 218 ms
160,672 KB |
testcase_15 | AC | 238 ms
185,168 KB |
testcase_16 | AC | 340 ms
174,976 KB |
testcase_17 | AC | 388 ms
199,360 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
evil_0.txt | AC | 177 ms
134,900 KB |
ソースコード
#include <algorithm> #include <cctype> #include <cmath> #include <cstring> #include <deque> #include <functional> #include <iomanip> #include <ios> #include <iostream> #include <map> #include <math.h> #include <numeric> #include <queue> #include <set> #include <stack> #include <string> #include <utility> #include <vector> using namespace std; using ull = unsigned long long; using ll = long long; using ld = long double; #define all(v) v.begin(), v.end() #define rep(i, n) for (ll i = 0; i < n; ++i) #define rep2(i, n, m) for (ll i = n; i <= m; ++i) #define rep3(i, n, m) for (ll i = n; i >= m; --i) template<class T> using pqg = priority_queue<T, vector<T>, greater<T>>; template<class T> using pq = priority_queue<T>; template<class S, class T> inline bool chmax(S &a, T b) { if (a < b) { a = b; return true; } return false; } template<class S, class T> inline bool chmin(S &a, T b) { if (a > b) { a = b; return true; } return false; } constexpr int MOD = 1000000007; string s; int n; int memo[10005]; vector<vector<int>> Z; vector<int> ZAlgorithm(string S) { int N = S.size(); vector<int> Z(N, 0); Z[0] = N; int i = 1, j = 0; while (i < N) { while (i + j < N && S[i+j] == S[j]) ++j; Z[i] = j; if (j == 0) { ++i; continue; } int k = 1; while (k < j && k + Z[k] < j) { Z[i+k] = Z[k]; ++k; } i += k; j -= k; } return Z; } int dp(int l, int r) { if (r - l <= 1) return 1LL; if (memo[l] != -1) return memo[l]; int& ret = memo[l]; ret = 1; for (int l2 = l+1, r2 = r-1; l2 <= r2; ++l2, --r2) { if (Z[l][r2 - l] >= l2 - l) { ret += dp(l2, r2); ret %= MOD; } } return ret; } int main() { cin >> s; n = s.size(); memset(memo, -1, sizeof(memo)); rep(i, n) { Z.push_back(ZAlgorithm(s.substr(i, n-i))); } cout << dp(0, n) << endl; return 0; }