結果
問題 | No.465 PPPPPPPPPPPPPPPPAPPPPPPPP |
ユーザー | pekempey |
提出日時 | 2016-12-16 08:12:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,636 bytes |
コンパイル時間 | 1,781 ms |
コンパイル使用メモリ | 173,608 KB |
実行使用メモリ | 21,804 KB |
最終ジャッジ日時 | 2024-11-30 10:15:59 |
合計ジャッジ時間 | 56,878 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,636 KB |
testcase_01 | AC | 2 ms
11,044 KB |
testcase_02 | AC | 2 ms
13,636 KB |
testcase_03 | AC | 1 ms
14,460 KB |
testcase_04 | AC | 2 ms
13,636 KB |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
32_ratsliveonnoevilstar.txt | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; bool isPalindrome(const string &s, int l, int r) { for (int i = 0; i < r - l; i++) { if (s[l + i] != s[r - 1 - i]) { return false; } } return true; } bool isPalTwo(const string &s, int l, int r) { if (r - l <= 1) { return false; } for (int i = 1; i < r - l; i++) { if (isPalindrome(s, l, l + i) && isPalindrome(s, l + i, r)) { return true; } } return false; } int main() { string s; cin >> s; int n = s.size(); vector<bool> bad(n); vector<int64_t> cnt(n + 2); for (int i = 1; i < n; i++) { if (bad[i]) { continue; } if (isPalindrome(s, 0, i)) { for (int j = 2; i * j < n; j++) { if (s.substr(0, i) != s.substr(i * (j - 1), i)) { break; } cnt[i * j + 1] += j - 1; bad[i * j] = true; } } } for (int i = 2; i <= n - 2; i++) { if (bad[i]) { continue; } if (isPalTwo(s, 0, i)) { for (int j = 1; i * j < n; j++) { if (s.substr(0, i) != s.substr(i * (j - 1), i)) { break; } cnt[i * j + 1] += j; bad[i * j] = true; } } } for (int i = 0; i < n - 1; i++) { cnt[i + 1] += cnt[i]; } int64_t ans = 0; for (int i = 0; i < n; i++) { if (isPalindrome(s, i, n)) { ans += cnt[i]; } } cout << ans << endl; }