結果

問題 No.2866 yuusaan's Knapsack
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-08-31 00:22:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,490 bytes
コンパイル時間 4,377 ms
コンパイル使用メモリ 267,964 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-08-31 01:29:41
合計ジャッジ時間 5,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 31 ms
34,048 KB
testcase_07 AC 25 ms
27,904 KB
testcase_08 AC 30 ms
32,000 KB
testcase_09 AC 27 ms
29,824 KB
testcase_10 AC 30 ms
31,616 KB
testcase_11 AC 21 ms
23,552 KB
testcase_12 AC 26 ms
28,544 KB
testcase_13 AC 23 ms
25,344 KB
testcase_14 AC 27 ms
28,800 KB
testcase_15 AC 31 ms
32,384 KB
testcase_16 AC 23 ms
25,344 KB
testcase_17 AC 30 ms
30,464 KB
testcase_18 AC 20 ms
22,272 KB
testcase_19 AC 34 ms
34,816 KB
testcase_20 AC 27 ms
27,392 KB
testcase_21 AC 28 ms
28,800 KB
testcase_22 AC 25 ms
27,392 KB
testcase_23 AC 32 ms
33,664 KB
testcase_24 AC 25 ms
26,752 KB
testcase_25 AC 29 ms
30,336 KB
testcase_26 AC 32 ms
35,456 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

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, W;
    cin >> n >> W;
    vector<lint> v(n), w(n);
    for (int i = 0; i < n; i++) {
        cin >> v[i] >> w[i];
    }
    vector<vector<pair<lint, mint>>> dp(n + 1, vector<pair<lint, mint>>(20010, {-INF, 0}));
    dp[0][10000] = {0, 1};
    for (int i = 1; i <= n; i++) {
        for (int j = 0; j < 20010; j++) {
            if (dp[i - 1][j].first > dp[i][j].first) {
                dp[i][j] = dp[i - 1][j];
            } else if (dp[i - 1][j].first == dp[i][j].first) {
                dp[i][j].second += dp[i - 1][j].second;
            }
            if (0 <= j - w[i - 1] && j - w[i - 1] < 20010) {
                if (dp[i - 1][j - w[i - 1]].first + v[i - 1] > dp[i][j].first) {
                    dp[i][j] = {dp[i - 1][j - w[i - 1]].first + v[i - 1], dp[i - 1][j - w[i - 1]].second};
                } else if (dp[i - 1][j - w[i - 1]].first + v[i - 1] == dp[i][j].first) {
                    dp[i][j].second += dp[i - 1][j - w[i - 1]].second;
                }
            }
        }
    }
    lint val = -INF;
    for (int j = 0; j <= W + 10000; j++) {
        val = max(val, dp[n][j].first);
    }
    mint ans = 0;
    for (int j = 0; j <= W + 10000; j++) {
        if (dp[n][j].first == val) {
            ans += dp[n][j].second;
        }
    }
    cout << val << " " << ans.val() << endl;
}
0