結果

問題 No.1947 質より種類数
ユーザー lloyzlloyz
提出日時 2022-05-21 00:49:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,048 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 273,408 KB
最終ジャッジ日時 2024-09-20 10:52:23
合計ジャッジ時間 11,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 59 ms
67,456 KB
testcase_05 AC 57 ms
66,560 KB
testcase_06 AC 63 ms
68,992 KB
testcase_07 AC 64 ms
66,688 KB
testcase_08 AC 61 ms
67,584 KB
testcase_09 AC 82 ms
72,704 KB
testcase_10 AC 75 ms
70,900 KB
testcase_11 AC 112 ms
86,060 KB
testcase_12 AC 104 ms
82,468 KB
testcase_13 AC 70 ms
70,016 KB
testcase_14 AC 341 ms
126,592 KB
testcase_15 AC 181 ms
103,808 KB
testcase_16 AC 494 ms
148,864 KB
testcase_17 AC 451 ms
170,532 KB
testcase_18 AC 1,048 ms
259,456 KB
testcase_19 AC 664 ms
236,504 KB
testcase_20 AC 536 ms
192,736 KB
testcase_21 AC 832 ms
214,272 KB
testcase_22 AC 99 ms
83,808 KB
testcase_23 AC 380 ms
140,800 KB
testcase_24 AC 60 ms
66,560 KB
testcase_25 AC 56 ms
65,280 KB
testcase_26 AC 55 ms
65,152 KB
testcase_27 AC 55 ms
64,768 KB
testcase_28 AC 61 ms
68,480 KB
testcase_29 AC 828 ms
258,396 KB
testcase_30 AC 744 ms
258,164 KB
testcase_31 AC 36 ms
52,224 KB
testcase_32 AC 33 ms
51,712 KB
testcase_33 AC 47 ms
62,080 KB
testcase_34 AC 576 ms
273,408 KB
testcase_35 AC 449 ms
258,176 KB
testcase_36 AC 748 ms
258,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

INF = 10**18
DP = [[-INF for _ in range(v + 1)] for _ in range(n + 1)]
DP[0][0] = 0
for i in range(n):
    cv, cw = VW[i]
    for j in range(v + 1):
        if j >= cv:
            DP[i + 1][j] = max(DP[i + 1][j], DP[i][j], DP[i][j - cv] + cw + c)
        else:
            DP[i + 1][j] = max(DP[i + 1][j], DP[i][j])
    for j in range(cv, v + 1):
        DP[i + 1][j] = max(DP[i + 1][j], DP[i + 1][j - cv] + cw)
print(max(DP[-1]))
0