結果
問題 | No.599 回文かい |
ユーザー | Manuel1024 |
提出日時 | 2021-11-07 15:30:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,587 bytes |
コンパイル時間 | 898 ms |
コンパイル使用メモリ | 76,356 KB |
実行使用メモリ | 401,448 KB |
最終ジャッジ日時 | 2024-11-14 01:23:14 |
合計ジャッジ時間 | 57,562 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,400 KB |
testcase_01 | AC | 2 ms
10,404 KB |
testcase_02 | AC | 1 ms
10,404 KB |
testcase_03 | AC | 2 ms
13,636 KB |
testcase_04 | MLE | - |
testcase_05 | TLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | AC | 3 ms
13,640 KB |
testcase_09 | MLE | - |
testcase_10 | AC | 170 ms
194,852 KB |
testcase_11 | AC | 97 ms
114,944 KB |
testcase_12 | AC | 326 ms
216,032 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
evil_0.txt | MLE | - |
ソースコード
#include <iostream> #include <vector> #include <string> using namespace std; using ll = long long int; constexpr ll MOD = 1'000'000'007; vector<int> Z_Algorithm(const string &s){ vector<int> a(s.size()); a[0] = s.size(); int i = 1, j = 0; while(i < s.size()){ while(i+j < s.size() && s[j] == s[i+j]) ++j; a[i] = j; if(j == 0){ ++i; continue; } int k = 1; while(i+k < s.size() && k+a[k] < j){ a[i+k] = a[k], ++k; } i += k; j -= k; } return a; } struct Solver{ const string s; vector<vector<int>> mem; Solver(string &s): s(s), mem(vector<vector<int>>(s.size(), vector<int>(s.size()))){ int l = s.size(); for(int i = 0; l-i*2 > 0; i++){ // cerr << s.substr(i, l-i*2) << endl; auto vec = Z_Algorithm(s.substr(i, l-i*2)); for(int j = 0; j < vec.size(); j++){ mem[i][i+j] = vec[j]; } } } ll f(int start, int end){ ll ans = 1; for(int i = 0; i+start < end-i; i++){ if(mem[start][end-i] == i+1){ ans += f(start+i+1, end-i-1); ans %= MOD; } } // for(int i = 0; i < s.size(); i++) cerr << mem[start][i] << " "; // cerr << endl; // cerr << start << " " << end << " " << ans << endl; return ans; } void solve(){ cout << f(0, s.size()-1) << endl; } }; int main(){ string s; cin >> s; Solver sol(s); sol.solve(); return 0; }