結果

問題 No.1163 I want to be a high achiever
ユーザー sten_sansten_san
提出日時 2021-01-29 11:19:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 1,344 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 202,996 KB
実行使用メモリ 50,468 KB
最終ジャッジ日時 2023-09-09 05:45:37
合計ジャッジ時間 4,218 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 34 ms
27,548 KB
testcase_05 AC 53 ms
41,912 KB
testcase_06 AC 11 ms
10,196 KB
testcase_07 AC 64 ms
50,056 KB
testcase_08 AC 63 ms
49,000 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 35 ms
28,000 KB
testcase_11 AC 55 ms
42,912 KB
testcase_12 AC 38 ms
29,936 KB
testcase_13 AC 16 ms
13,676 KB
testcase_14 AC 15 ms
13,876 KB
testcase_15 AC 60 ms
46,508 KB
testcase_16 AC 27 ms
22,020 KB
testcase_17 AC 40 ms
31,728 KB
testcase_18 AC 64 ms
49,440 KB
testcase_19 AC 13 ms
11,832 KB
testcase_20 AC 6 ms
6,484 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 49 ms
37,956 KB
testcase_23 AC 43 ms
33,856 KB
testcase_24 AC 65 ms
50,468 KB
testcase_25 AC 30 ms
23,944 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 1 ms
4,376 KB
testcase_28 AC 1 ms
4,376 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 1 ms
4,380 KB
testcase_31 AC 2 ms
4,380 KB
testcase_32 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct uns_t {} uns;
template <typename Element, typename Head, typename ...Args>
auto vec(Element init, Head arg, Args ...args) {
    if constexpr (sizeof...(Args) == 0) return std::vector(arg, init);
    else return std::vector(arg, vec(init, args...));
}
template <typename Element, typename Head, typename ...Args>
auto vec(uns_t, Head arg, Args ...args) {
    return vec(Element(), arg, args...);
}

int main() {
    constexpr int inf = INT_MAX / 4;

    int n, x; cin >> n >> x;
    auto a = vec<int>(uns, n);
    auto b = vec<int>(uns, n);
    for (auto &e : a) cin >> e;
    for (auto &e : b) cin >> e;

    for (auto &e : a) {
        e -= x;
        e *= -1;
    }

    if (0 < *min_element(begin(a), end(a))) {
        cout << -1 << endl;
        return 0;
    }

    int all = accumulate(begin(a), end(a), 0);
    if (all <= 0) {
        cout << 0 << endl;
        return 0;
    }

    auto dp = vec<int>(inf, n + 1, all + 1);
    dp[0][0] = 0;

    for (int i = 1; i <= n; ++i) {
        for (int j = 0; j <= all; ++j) {
            if (a[i - 1] <= 0) {
                dp[i][j] = dp[i - 1][j];
            }
            else {
                dp[i][j] = min(dp[i - 1][j], dp[i - 1][max(0, j - a[i - 1])] + b[i - 1]);
            }
        }
    }

    cout << dp[n][all] << endl;
}

0