結果

問題 No.1858 Gorgeous Knapsack
ユーザー lloyzlloyz
提出日時 2022-03-01 21:32:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 747 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 273,312 KB
最終ジャッジ日時 2024-07-08 03:58:57
合計ジャッジ時間 10,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,104 KB
testcase_01 AC 40 ms
53,004 KB
testcase_02 AC 39 ms
52,996 KB
testcase_03 AC 47 ms
61,456 KB
testcase_04 AC 303 ms
114,436 KB
testcase_05 AC 107 ms
83,536 KB
testcase_06 AC 335 ms
122,928 KB
testcase_07 AC 209 ms
103,100 KB
testcase_08 AC 453 ms
143,508 KB
testcase_09 AC 719 ms
191,176 KB
testcase_10 AC 262 ms
106,396 KB
testcase_11 AC 390 ms
129,168 KB
testcase_12 AC 607 ms
165,716 KB
testcase_13 AC 128 ms
82,432 KB
testcase_14 AC 49 ms
63,804 KB
testcase_15 AC 46 ms
62,220 KB
testcase_16 AC 48 ms
62,392 KB
testcase_17 AC 39 ms
53,252 KB
testcase_18 AC 39 ms
54,304 KB
testcase_19 AC 39 ms
53,924 KB
testcase_20 AC 37 ms
53,004 KB
testcase_21 AC 38 ms
53,148 KB
testcase_22 AC 39 ms
52,620 KB
testcase_23 AC 39 ms
52,468 KB
testcase_24 AC 137 ms
88,612 KB
testcase_25 AC 470 ms
159,472 KB
testcase_26 AC 415 ms
143,072 KB
testcase_27 AC 404 ms
140,360 KB
testcase_28 AC 267 ms
120,252 KB
testcase_29 AC 93 ms
77,200 KB
testcase_30 AC 90 ms
77,196 KB
testcase_31 AC 93 ms
77,404 KB
testcase_32 AC 88 ms
77,276 KB
testcase_33 AC 96 ms
77,188 KB
testcase_34 AC 735 ms
273,104 KB
testcase_35 AC 448 ms
273,148 KB
testcase_36 AC 747 ms
273,312 KB
testcase_37 AC 37 ms
52,676 KB
testcase_38 AC 84 ms
77,444 KB
testcase_39 AC 42 ms
60,132 KB
testcase_40 AC 458 ms
273,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
VW = [list(map(int, input().split())) for _ in range(n)]

VW.sort(key=lambda x: -x[0])
DP = [[-1 for _ in range(m + 1)] for _ in range(n + 1)]
DP[0][0] = 0
for i in range(n):
    v, w = VW[i]
    for j in range(m + 1):
        if DP[i][j] != -1:
            DP[i + 1][j] = max(DP[i + 1][j], DP[i][j])
            if j + w <= m:
                DP[i + 1][j + w] = max(DP[i + 1][j + w], DP[i][j + w], DP[i][j] + v)
ans = 0
for i in range(1, n + 1):
    maxv = max(DP[i])
    ans = max(ans, maxv * VW[i - 1][0])
print(ans)
0