結果

問題 No.2947 Sing a Song
ユーザー zawakasuzawakasu
提出日時 2024-10-25 21:34:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,343 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 83,896 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-25 21:34:56
合計ジャッジ時間 5,331 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 4 ms
6,820 KB
testcase_06 AC 5 ms
6,820 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 4 ms
6,820 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 4 ms
6,820 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 5 ms
6,820 KB
testcase_18 AC 5 ms
6,816 KB
testcase_19 AC 5 ms
6,816 KB
testcase_20 AC 9 ms
6,816 KB
testcase_21 RE -
testcase_22 AC 5 ms
6,816 KB
testcase_23 AC 9 ms
6,820 KB
testcase_24 AC 9 ms
6,820 KB
testcase_25 RE -
testcase_26 AC 9 ms
6,820 KB
testcase_27 AC 14 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <cassert>
#include <string>
#include <vector>

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

    int N;
    std::string S, T;
    std::cin >> N >> S >> T;
    const int MAX{200010};
    std::vector<int> dp(MAX, -1), recov(MAX, -1);
    dp[0] = 0;
    for (int i{} ; i < MAX ; i++) {
        if (i + (int)S.size() < MAX and dp[i + S.size()] < dp[i] + 1) {
            dp[i + S.size()] = dp[i] + 1;
            recov[i + S.size()] = 0;
        }
        if (i + (int)T.size() < MAX and dp[i + T.size()] < dp[i]) {
            dp[i + T.size()] = dp[i];
            recov[i + T.size()] = 1;
        }
    }
    auto get{[&](int x) -> std::vector<std::string> {
        std::vector<std::string> res;
        while (x) {
            if (recov[x] == 0) {
                res.push_back(S);
                x -= (int)S.size();
            }
            else if (recov[x] == 1) {
                res.push_back(T);
                x -= (int)T.size();
            }
            else {
                assert(false);
            }
        }
        return res;
    }};
    for (int i{} ; i < N ; i++) {
        int A;
        std::cin >> A;
        auto res{get(A)};
        for (int j{} ; j < (int)res.size() ; j++) std::cout << res[j] << (j + 1 == (int)res.size() ? '\n' : ' ');
    }
}
0