結果

問題 No.37 遊園地のアトラクション
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2022-12-19 23:59:01
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 5,000 ms
コード長 952 bytes
コンパイル時間 1,127 ms
コンパイル使用メモリ 144,748 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-11-18 01:31:04
合計ジャッジ時間 2,328 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>

using namespace std;

int main(){

    long long T, N, x, mx=0;
    cin >> T >> N;
    vector<long long> c(N), v(N);
    for (int i=0; i<N; i++) cin >> c[i];
    for (int j=0; j<N; j++) cin >> v[j];
    for (int i=0; i<N; i++){
        x = v[i];
        while(x != 0){
            c.push_back(c[i]);
            v.push_back(x/2);
            x /= 2;
        }
    }
    N = c.size();
    vector<vector<long long>> dp(N+1, vector<long long>(T+1));

    for (int i=1; i<=N; i++){
        for (int j=0; j<=T; j++){
            dp[i][j] = max(dp[i][j], dp[i-1][j]);
            if (j-c[i-1]>=0) dp[i][j] = max(dp[i][j], dp[i-1][j-c[i-1]]+v[i-1]);
        }
    }

    for (int i=0; i<=T; i++) mx = max(mx, dp[N][i]);
    cout << mx << endl;

    return 0;
}
0