結果
問題 | No.464 PPAP |
ユーザー | face4 |
提出日時 | 2018-11-12 17:46:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 813 bytes |
コンパイル時間 | 717 ms |
コンパイル使用メモリ | 72,316 KB |
実行使用メモリ | 32,028 KB |
最終ジャッジ日時 | 2024-06-06 03:40:39 |
合計ジャッジ時間 | 4,677 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,880 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 57 ms
6,940 KB |
testcase_08 | AC | 37 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include<iostream> #include<vector> using namespace std; string s; bool isPalindrome(int i, int j){ for(int k = 0; k <= (j-i)/2; k++){ if(s[i+k] != s[j-k]) return false; } return true; } int main(){ cin >> s; int n = s.length(); vector<int> v[n], aft(n, 0); for(int i = 0; i < n; i++){ for(int j = i; j < n-2; j++){ if(isPalindrome(i,j)) v[i].push_back(j); } } for(int i = 0; i < n; i++){ if(isPalindrome(i, n-1)) aft[i] = 1; } for(int i = n-2; i >= 0; i--) aft[i] += aft[i+1]; // 最悪計算量はO(n^2)なので間に合うはず...? long long ans = 0; for(int i : v[0]){ for(int j : v[i+1]){ ans += aft[j+2]; } } cout << ans << endl; return 0; }