結果

問題 No.2866 yuusaan's Knapsack
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-02 18:34:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,204 bytes
コンパイル時間 5,503 ms
コンパイル使用メモリ 320,308 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-02 18:34:45
合計ジャッジ時間 13,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 417 ms
6,940 KB
testcase_07 AC 279 ms
6,944 KB
testcase_08 AC 387 ms
6,940 KB
testcase_09 AC 326 ms
6,940 KB
testcase_10 AC 366 ms
6,944 KB
testcase_11 AC 217 ms
6,944 KB
testcase_12 AC 300 ms
6,940 KB
testcase_13 AC 241 ms
6,944 KB
testcase_14 AC 295 ms
6,940 KB
testcase_15 WA -
testcase_16 AC 261 ms
6,944 KB
testcase_17 AC 368 ms
6,944 KB
testcase_18 AC 172 ms
6,940 KB
testcase_19 AC 420 ms
6,940 KB
testcase_20 AC 296 ms
6,944 KB
testcase_21 AC 338 ms
6,940 KB
testcase_22 AC 269 ms
6,940 KB
testcase_23 AC 462 ms
6,940 KB
testcase_24 AC 251 ms
6,944 KB
testcase_25 AC 365 ms
6,944 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using lint = long long;
using mint = atcoder::modint998244353;

lint INF = 2000000000;

int main() {
    int n;
    lint W;
    cin >> n >> W;
    vector<lint> v(n), w(n);
    for (int i = 0; i < n; i++) {
        cin >> v[i] >> w[i];
    }
    map<lint, pair<lint, mint>> dp, ndp;
    dp[0] = {0, 1};
    for (int i = 0; i < n; i++) {
        ndp = dp;
        for (auto [j, p] : dp) {
            if (!dp.count(j + w[i])) {
                ndp[j + w[i]] = {-INF, 0};
            }
        }
        for (auto [j, p] : dp) {
            if (ndp[j + w[i]].first < dp[j].first + v[i]) {
                ndp[j + w[i]] = {dp[j].first + v[i], dp[j].second};
            } else if (ndp[j + w[i]].first == dp[j].first + v[i]) {
                ndp[j + w[i]].second += dp[j].second;
            }
        }
        swap(dp, ndp);
    }
    lint val = -INF;
    for (auto [x, p] : dp) {
        if (x <= W) {
            val = max(val, dp[x].first);
        }
    }
    mint ans = 0;
    for (auto [x, p] : dp) {
        if (dp[x].first == val) {
            ans += dp[x].second;
        }
    }
    cout << val << " " << ans.val() << endl;
}
0