結果

問題 No.2866 yuusaan's Knapsack
ユーザー H3PO4H3PO4
提出日時 2024-09-07 14:25:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2024-09-26 14:39:41
合計ジャッジ時間 3,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,232 KB
testcase_01 AC 50 ms
62,208 KB
testcase_02 AC 53 ms
64,896 KB
testcase_03 AC 44 ms
60,544 KB
testcase_04 AC 44 ms
60,288 KB
testcase_05 AC 43 ms
60,160 KB
testcase_06 AC 111 ms
95,872 KB
testcase_07 AC 97 ms
89,856 KB
testcase_08 AC 100 ms
94,208 KB
testcase_09 AC 99 ms
92,032 KB
testcase_10 AC 99 ms
93,568 KB
testcase_11 AC 89 ms
85,760 KB
testcase_12 AC 96 ms
90,496 KB
testcase_13 AC 93 ms
87,552 KB
testcase_14 AC 95 ms
90,880 KB
testcase_15 AC 103 ms
94,720 KB
testcase_16 AC 93 ms
88,704 KB
testcase_17 AC 100 ms
93,952 KB
testcase_18 AC 89 ms
86,144 KB
testcase_19 AC 118 ms
98,560 KB
testcase_20 AC 103 ms
91,264 KB
testcase_21 AC 102 ms
93,056 KB
testcase_22 AC 100 ms
91,008 KB
testcase_23 AC 108 ms
97,364 KB
testcase_24 AC 93 ms
89,856 KB
testcase_25 AC 102 ms
94,080 KB
testcase_26 AC 93 ms
95,360 KB
testcase_27 AC 53 ms
65,280 KB
testcase_28 AC 106 ms
92,160 KB
権限があれば一括ダウンロードができます

ソースコード

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

goods = list(tuple(map(int, input().split())) for _ in range(N))
goods.sort(key=lambda x: x[1])

for v, w in goods:
    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