結果
問題 | No.599 回文かい |
ユーザー | snrnsidy |
提出日時 | 2021-09-21 13:58:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,467 bytes |
コンパイル時間 | 1,862 ms |
コンパイル使用メモリ | 202,608 KB |
実行使用メモリ | 313,840 KB |
最終ジャッジ日時 | 2024-07-03 21:47:15 |
合計ジャッジ時間 | 11,066 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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,940 KB |
testcase_04 | AC | 6 ms
18,024 KB |
testcase_05 | AC | 4 ms
14,032 KB |
testcase_06 | AC | 5 ms
15,904 KB |
testcase_07 | AC | 6 ms
18,008 KB |
testcase_08 | AC | 5 ms
18,048 KB |
testcase_09 | AC | 4 ms
14,044 KB |
testcase_10 | MLE | - |
testcase_11 | AC | 269 ms
208,816 KB |
testcase_12 | MLE | - |
testcase_13 | AC | 306 ms
221,380 KB |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
evil_0.txt | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int MOD = 100003; inline int mod(long long n){ if(n >= 0) return n % MOD; return ((-n/MOD+1)*MOD + n) % MOD; } int arr[10000][10000]; int dp[5005]; int main() { char S[200001]; scanf("%s", S); int L = strlen(S); for(int mid=1;mid<=L;mid++) { int H = 0, power = 1; for(int i=0; i<=L-mid; i++){ if(i == 0){ for(int j=0; j<mid; j++){ H = mod(H + 1LL*S[mid-1-j]*power); if(j < mid-1) power = mod(power*2); } } else H = mod(2*(H - 1LL*S[i-1]*power) + S[i+mid-1]); arr[i][i+mid-1] = H; } } dp[0] = 1; for(int i=0;i<=(L/2);i++) { for(int j=1;j<=L;j++) { int L1 = i; int R1 = i + j - 1; int R2 = L-1-i; int L2 = R2-j+1; if(L2<=R1) break; if(arr[L1][R1]==arr[L2][R2]) { bool issame = true; for(int k=0;k<j;k++) { if(S[L1+k]!=S[L2+k]) { issame = false; break; } } if(issame) { dp[R1+1] += dp[i]; dp[R1+1]%=1000000007; } } } } long long int res = 0; for(int i=0;i<=(L/2);i++) { res += dp[i]; res%=(1000000007); } cout << res << '\n'; return 0; }