結果

問題 No.2492 Knapsack Problem?
ユーザー sabbir ahmed sabbirsabbir ahmed sabbir
提出日時 2023-10-06 22:33:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 825 ms
コンパイル使用メモリ 70,960 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-07-26 16:39:52
合計ジャッジ時間 6,894 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,060 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 6 ms
7,088 KB
testcase_04 WA -
testcase_05 AC 9 ms
7,120 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

int main() {
    int N, W;
    cin >> N >> W;

    vector<int> v(N), w(N);
    for (int i = 0; i < N; i++) {
        cin >> v[i] >> w[i];
    }

    const int INF = 1e9 + 7;
    const int MAX_V = 1000 * 1000 + 5;

    vector<int> dp(MAX_V, INF);
    dp[0] = 0;

    for (int i = 0; i < N; i++) {
        for (int j = MAX_V - 1; j >= v[i]; j--) {
            dp[j] = min(dp[j], dp[j - v[i]] + w[i]);
        }
    }

    int ans = -1;
    for (int i = MAX_V - 1; i >= 0; i--) {
        if (dp[i] <= W) {
            ans = i;
            break;
        }
    }

    cout << ans << endl;

    return 0;
}
0