結果

問題 No.2866 yuusaan's Knapsack
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-02 18:45:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 1,214 bytes
コンパイル時間 5,651 ms
コンパイル使用メモリ 319,772 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-26 14:39:24
合計ジャッジ時間 12,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 422 ms
6,272 KB
testcase_07 AC 263 ms
5,760 KB
testcase_08 AC 394 ms
6,400 KB
testcase_09 AC 319 ms
6,016 KB
testcase_10 AC 369 ms
6,944 KB
testcase_11 AC 207 ms
5,504 KB
testcase_12 AC 297 ms
5,888 KB
testcase_13 AC 242 ms
5,888 KB
testcase_14 AC 289 ms
5,888 KB
testcase_15 AC 360 ms
6,144 KB
testcase_16 AC 259 ms
5,760 KB
testcase_17 AC 361 ms
6,272 KB
testcase_18 AC 166 ms
5,632 KB
testcase_19 AC 403 ms
6,144 KB
testcase_20 AC 283 ms
6,016 KB
testcase_21 AC 322 ms
6,144 KB
testcase_22 AC 263 ms
5,760 KB
testcase_23 AC 436 ms
6,272 KB
testcase_24 AC 240 ms
5,632 KB
testcase_25 AC 364 ms
6,144 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 342 ms
6,144 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 (x <= W && dp[x].first == val) {
            ans += dp[x].second;
        }
    }
    cout << val << " " << ans.val() << endl;
}
0