結果

問題 No.2947 Sing a Song
ユーザー zawakasuzawakasu
提出日時 2024-10-25 21:40:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 1,252 bytes
コンパイル時間 820 ms
コンパイル使用メモリ 83,424 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-25 21:40:49
合計ジャッジ時間 3,761 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 5 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 5 ms
6,816 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 4 ms
6,816 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 5 ms
6,816 KB
testcase_13 AC 5 ms
6,816 KB
testcase_14 AC 4 ms
6,816 KB
testcase_15 AC 4 ms
6,816 KB
testcase_16 AC 3 ms
6,816 KB
testcase_17 AC 4 ms
6,816 KB
testcase_18 AC 4 ms
6,816 KB
testcase_19 AC 4 ms
6,816 KB
testcase_20 AC 8 ms
6,816 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 4 ms
6,820 KB
testcase_23 AC 7 ms
6,820 KB
testcase_24 AC 7 ms
6,820 KB
testcase_25 AC 6 ms
6,816 KB
testcase_26 AC 8 ms
6,816 KB
testcase_27 AC 12 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);
    dp[0] = 0;
    for (int i{} ; i < MAX ; i++) {
        if (dp[i] == -1) continue;
        if (i + (int)S.size() < MAX and dp[i + S.size()] < dp[i] + 1) {
            dp[i + S.size()] = dp[i] + 1;
        }
        if (i + (int)T.size() < MAX and dp[i + T.size()] < dp[i]) {
            dp[i + T.size()] = dp[i];
        }
    }
    auto get{[&](int x) -> std::vector<std::string> {
        std::vector<std::string> res;
        assert(dp[x] != -1);
        for (int i{} ; i < dp[x] ; i++) res.push_back(S);
        int remain{x - dp[x] * (int)S.size()};
        assert(remain >= 0 and remain % (int)T.size() == 0);
        while (remain) {
            res.push_back(T);
            remain -= (int)T.size();
        }
        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