結果
問題 | No.588 空白と回文 |
ユーザー | Ut.k |
提出日時 | 2017-11-03 23:09:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 603 bytes |
コンパイル時間 | 1,296 ms |
コンパイル使用メモリ | 57,564 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-23 14:51:38 |
合計ジャッジ時間 | 31,444 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
8,576 KB |
testcase_02 | AC | 2 ms
10,496 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 2 ms
10,496 KB |
testcase_05 | AC | 2 ms
8,448 KB |
testcase_06 | TLE | - |
testcase_07 | AC | 1 ms
8,576 KB |
testcase_08 | AC | 23 ms
10,496 KB |
testcase_09 | AC | 1 ms
8,448 KB |
testcase_10 | AC | 4 ms
10,496 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 3 ms
10,144 KB |
testcase_14 | AC | 2 ms
10,496 KB |
testcase_15 | AC | 1 ms
8,576 KB |
testcase_16 | AC | 2 ms
10,496 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | AC | 2 ms
8,448 KB |
ソースコード
#include <algorithm> #include <iostream> #include <string> using namespace std; int DFS2(const string &S, int l, int r) { if (l > r) { return 0; } if (l == r) { return 1; } return DFS2(S, l + 1, r - 1) + (S[l] == S[r] ? 2 : 0); } int DFS(const string &S, int l, int r) { if (l > r) { return 0; } if (l == r) { return 1; } int cnt = 0; if (S[l] == S[r]) { cnt = DFS2(S, l + 1, r - 1) + 2; } return max(max(DFS(S, l + 1, r), DFS(S, l, r - 1)), cnt); } int main() { string S; cin >> S; cout << DFS(S, 0, S.size() - 1) << endl; return 0; }