結果

問題 No.10 +か×か
ユーザー kyunakyuna
提出日時 2020-05-02 01:09:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 791 ms / 5,000 ms
コード長 775 bytes
コンパイル時間 769 ms
コンパイル使用メモリ 78,368 KB
実行使用メモリ 336,952 KB
最終ジャッジ日時 2024-12-14 15:44:39
合計ジャッジ時間 4,377 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 791 ms
336,696 KB
testcase_04 AC 607 ms
220,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 777 ms
336,952 KB
testcase_07 AC 606 ms
222,228 KB
testcase_08 AC 112 ms
50,192 KB
testcase_09 AC 161 ms
78,052 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <vector>
#include <cassert>
using namespace std;
template<class T> inline bool chmax(T &a, T b) { return a < b ? (a = b, 1) : 0; }

int main() {
    assert('*' < '+' && '+' < '@');
    int n; cin >> n;
    int total; cin >> total;
    vector<int> a(n);
    for (auto &ai: a) cin >> ai;
    vector<vector<string>> dp(n, vector<string>(total + 1));
    dp[0][a[0]] = "@";
    for (int i = 0; i + 1 < n; i++) for (int j = 0; j <= total; j++) {
        if (j + a[i + 1] <= total) {
            chmax(dp[i + 1][j + a[i + 1]], dp[i][j] + "+");
        }
        if (j * a[i + 1] <= total) {
            chmax(dp[i + 1][j * a[i + 1]], dp[i][j] + "*");
        }
    }
    cout << dp.back()[total].substr(1) << endl;
    return 0;
}
0