結果

問題 No.588 空白と回文
ユーザー zaichuzaichu
提出日時 2017-11-04 01:19:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 916 bytes
コンパイル時間 1,691 ms
コンパイル使用メモリ 167,948 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-11-23 15:47:51
合計ジャッジ時間 26,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
10,020 KB
testcase_02 AC 2 ms
13,640 KB
testcase_03 AC 2 ms
10,656 KB
testcase_04 AC 2 ms
13,644 KB
testcase_05 AC 2 ms
10,276 KB
testcase_06 TLE -
testcase_07 AC 2 ms
10,020 KB
testcase_08 AC 37 ms
13,636 KB
testcase_09 AC 2 ms
10,656 KB
testcase_10 AC 9 ms
13,636 KB
testcase_11 AC 2 ms
10,528 KB
testcase_12 TLE -
testcase_13 WA -
testcase_14 AC 2 ms
13,636 KB
testcase_15 WA -
testcase_16 AC 2 ms
6,820 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 2 ms
6,820 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}

int dfs(string s, int l, int r, int cnt)
{
    //cout << s.substr(l, r - l + 1) << endl
    //<< " " << l << " " << r << " " << cnt << endl;

    if (l == r && cnt >= 2)
        return cnt + 1;
    if (r - l < 2)
        return s[r] != s[l] ? cnt + 1 : cnt + 2;

    if (cnt > 0 && s[l] != s[r])
        return max(max(dfs(s, l + 1, r, 0), dfs(s, l, r - 1, 0)), dfs(s, l + 1, r - 1, cnt));
    else if (s[l] == s[r])
        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;
}
0