結果

問題 No.37 遊園地のアトラクション
ユーザー PachicobuePachicobue
提出日時 2017-07-03 16:00:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 5,000 ms
コード長 2,110 bytes
コンパイル時間 1,717 ms
コンパイル使用メモリ 173,900 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-10-10 13:20:29
合計ジャッジ時間 2,947 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 6 ms
7,168 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 6 ms
6,400 KB
testcase_11 AC 5 ms
6,144 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 6 ms
6,912 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 4 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 8 ms
8,576 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define show(x) cout << #x << " = " << x << endl

using namespace std;
using ll = long long;
using pii = pair<int, int>;
using vi = vector<int>;

template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v)
{
    os << "sz=" << v.size() << "\n[";
    for (const auto& p : v) {
        os << p << ",";
    }
    os << "]\n";
    return os;
}

template <typename S, typename T>
ostream& operator<<(ostream& os, const pair<S, T>& p)
{
    os << "(" << p.first << "," << p.second
       << ")";
    return os;
}


constexpr ll MOD = 1e9 + 7;

template <typename T>
constexpr T INF = numeric_limits<T>::max() / 100;

int main()
{
    int T, N;
    cin >> T >> N;
    vector<int> cost(N);
    vector<int> val(N);
    for (ll i = 0; i < N; i++) {
        cin >> cost[i];
    }
    for (ll i = 0; i < N; i++) {
        cin >> val[i];
    }
    for (ll i = 0; i < N; i++) {
        int v = val[i] / 2;
        while (v > 0) {
            cost.push_back(cost[i]);
            val.push_back(v);
            v /= 2;
        }
    }
    // show(val);
    // show(cost);
    const int size = cost.size();
    vector<vector<int>> dp(size + 1, vector<int>(T + 1, -1));  // i番目のアトラクションまでチェックして残り時間t の最大幸福
    dp[0][T] = 0;
    for (ll i = 1; i <= size; i++) {
        // show(dp);
        const int v = val[i - 1];
        const int tim = cost[i - 1];
        for (ll t = 0; t <= T; t++) {
            if (t + tim > T) {
                if (dp[i - 1][t] != -1) {
                    dp[i][t] = dp[i - 1][t];
                }
            } else {
                if (dp[i - 1][t + tim] != -1) {
                    dp[i][t] = max(dp[i][t], dp[i - 1][t + tim] + v);
                }
                if (dp[i - 1][t] != -1) {
                    dp[i][t] = max(dp[i][t], dp[i - 1][t]);
                }
            }
        }
    }
    // show(dp);
    int ans = 0;
    for (ll i = 0; i <= T; i++) {
        if (dp[size][i] != -1) {
            ans = max(ans, dp[size][i]);
        }
    }
    cout << ans << endl;

    return 0;
}
0