結果
問題 | No.588 空白と回文 |
ユーザー | zaichu |
提出日時 | 2017-11-04 01:06:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,095 bytes |
コンパイル時間 | 1,857 ms |
コンパイル使用メモリ | 172,876 KB |
実行使用メモリ | 8,832 KB |
最終ジャッジ日時 | 2024-05-02 21:06:43 |
合計ジャッジ時間 | 5,401 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,832 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; long long gcd(long long x, long long y) { if (y == 0) return x; return gcd(y, x % y); } long long lcm(long long x, long long y) { if (x == 0 || y == 0) return 0; return x / gcd(x, y) * y; } vector<vector<bool>> d(1001, vector<bool>(1001, false)); int dfs(string s, int l, int r, int cnt) { //cout << s.substr(l, r - l + 1) << endl //<< " " << l << " " << r << " " << cnt << endl; if (d[l][r]) return 0; if (l == r && cnt >= 2) return s[l] == ' ' ? cnt : cnt + 1; if (r - l < 2) return s[r] != s[l] ? cnt : cnt + 2; if ((cnt > 0 && s[l] != s[r]) || (s[l] == ' ' && s[r] == ' ')) return max(dfs(s, l + 1, r - 1, cnt), max(dfs(s, l + 1, r, 0), dfs(s, l, r - 1, 0))); else if (s[l] == s[r]) { d[l][r] = true; return dfs(s, l + 1, r - 1, cnt + 2); } else return max(dfs(s, l + 1, r, 0), dfs(s, l, r - 1, 0)); } int main() { string S; cin >> S; int N = S.size(); cout << dfs(S, 0, N - 1, 0) << endl; }