結果

問題 No.2866 yuusaan's Knapsack
ユーザー H3PO4H3PO4
提出日時 2024-08-30 22:16:13
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 910 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 99,140 KB
最終ジャッジ日時 2024-08-31 01:28:33
合計ジャッジ時間 3,516 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
65,012 KB
testcase_01 AC 46 ms
62,340 KB
testcase_02 AC 51 ms
66,356 KB
testcase_03 AC 41 ms
60,804 KB
testcase_04 AC 41 ms
60,636 KB
testcase_05 AC 43 ms
60,948 KB
testcase_06 AC 107 ms
96,120 KB
testcase_07 AC 99 ms
90,520 KB
testcase_08 AC 102 ms
93,504 KB
testcase_09 AC 103 ms
92,900 KB
testcase_10 AC 106 ms
94,604 KB
testcase_11 AC 87 ms
85,580 KB
testcase_12 AC 99 ms
92,320 KB
testcase_13 AC 91 ms
87,056 KB
testcase_14 AC 99 ms
91,896 KB
testcase_15 AC 105 ms
94,636 KB
testcase_16 AC 99 ms
89,012 KB
testcase_17 AC 105 ms
93,388 KB
testcase_18 AC 90 ms
85,912 KB
testcase_19 AC 124 ms
99,016 KB
testcase_20 AC 104 ms
90,624 KB
testcase_21 AC 106 ms
93,084 KB
testcase_22 AC 103 ms
91,360 KB
testcase_23 AC 115 ms
99,140 KB
testcase_24 AC 98 ms
90,352 KB
testcase_25 AC 104 ms
94,016 KB
testcase_26 AC 96 ms
96,448 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, W = map(int, input().split())

# get max value
MAX = 10001
MOD = 998244353

dp_val = [-(10**9)] * (2 * MAX + 1)
dp_val[MAX] = 0
dp_ct = [0] * (2 * MAX + 1)
dp_ct[MAX] = 1
for _ in range(N):
    v, w = map(int, input().split())
    new_dp_val = dp_val.copy()
    new_dp_ct = [0] * (2 * MAX + 1)
    for i in range(2 * MAX + 1):
        if i - w >= 0 and i - w <= 2 * MAX:
            if dp_val[i] <= dp_val[i - w] + v:
                new_dp_ct[i] += dp_ct[i - w]
                new_dp_val[i] = dp_val[i - w] + v
            if dp_val[i] >= dp_val[i - w] + v:
                new_dp_ct[i] += dp_ct[i]
            new_dp_ct[i] %= MOD
    dp_val = new_dp_val
    dp_ct = new_dp_ct

max_value = -(10**9)
ct = 0
for i in range(MAX + W + 1):
    if max_value < dp_val[i]:
        max_value = dp_val[i]
        ct = dp_ct[i]
    elif max_value == dp_val[i]:
        ct += dp_ct[i]

ct %= MOD
print(max_value, ct)
0