結果

問題 No.238 Mr. K's Another Gift
ユーザー MisterMister
提出日時 2020-09-04 17:50:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,260 bytes
コンパイル時間 1,688 ms
コンパイル使用メモリ 77,200 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-05-04 18:47:34
合計ジャッジ時間 3,564 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 5 ms
7,552 KB
testcase_06 WA -
testcase_07 AC 6 ms
8,448 KB
testcase_08 AC 6 ms
8,448 KB
testcase_09 AC 5 ms
8,448 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 4 ms
5,888 KB
testcase_15 AC 6 ms
7,808 KB
testcase_16 AC 6 ms
8,064 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 5 ms
8,448 KB
testcase_27 AC 5 ms
8,320 KB
testcase_28 AC 5 ms
8,320 KB
testcase_29 AC 5 ms
8,320 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 4 ms
7,040 KB
testcase_36 AC 3 ms
5,760 KB
testcase_37 AC 11 ms
7,168 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>

void solve() {
    std::string s;
    std::cin >> s;
    int n = s.length();

    std::string fore, back;

    auto dfs = [&](auto&& f, int l, int r, bool rem) -> bool {
        if (l == r) fore.push_back(s[l++]);
        if (l > r) {
            if (rem) back.push_back('a');
            return true;
        }

        if (s[l] == s[r]) {
            if (f(f, l + 1, r - 1, rem)) {
                fore.push_back(s[l]);
                back.push_back(s[r]);
                return true;
            }
        }

        if (rem) {
            if (f(f, l, r - 1, false)) {
                fore.push_back(s[r]);
                back.push_back(s[r]);
                return true;
            }
            if (f(f, l + 1, r, false)) {
                fore.push_back(s[l]);
                back.push_back(s[l]);
                return true;
            }
        }

        return false;
    };

    if (!dfs(dfs, 0, n - 1, true)) {
        std::cout << "NA\n";
    } else {
        std::reverse(fore.begin(), fore.end());
        std::cout << fore << back << "\n";
    }
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0