結果

問題 No.1947 質より種類数
ユーザー roarisroaris
提出日時 2022-05-20 21:58:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 710 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-09-20 08:04:14
合計ジャッジ時間 7,976 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 39 ms
53,504 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 39 ms
53,888 KB
testcase_04 AC 59 ms
66,944 KB
testcase_05 AC 59 ms
66,176 KB
testcase_06 AC 60 ms
67,328 KB
testcase_07 AC 58 ms
66,304 KB
testcase_08 AC 59 ms
66,816 KB
testcase_09 AC 71 ms
68,096 KB
testcase_10 AC 66 ms
67,200 KB
testcase_11 AC 84 ms
69,120 KB
testcase_12 AC 76 ms
67,456 KB
testcase_13 AC 64 ms
66,560 KB
testcase_14 AC 185 ms
72,576 KB
testcase_15 AC 130 ms
70,016 KB
testcase_16 AC 243 ms
73,472 KB
testcase_17 AC 303 ms
73,344 KB
testcase_18 AC 710 ms
76,928 KB
testcase_19 AC 464 ms
76,672 KB
testcase_20 AC 354 ms
73,208 KB
testcase_21 AC 538 ms
74,020 KB
testcase_22 AC 80 ms
68,736 KB
testcase_23 AC 206 ms
71,936 KB
testcase_24 AC 58 ms
65,920 KB
testcase_25 AC 56 ms
65,664 KB
testcase_26 AC 55 ms
64,896 KB
testcase_27 AC 56 ms
65,664 KB
testcase_28 AC 62 ms
66,944 KB
testcase_29 AC 456 ms
74,384 KB
testcase_30 AC 417 ms
72,576 KB
testcase_31 AC 40 ms
53,504 KB
testcase_32 AC 39 ms
53,888 KB
testcase_33 AC 49 ms
63,260 KB
testcase_34 AC 647 ms
74,368 KB
testcase_35 AC 321 ms
69,632 KB
testcase_36 AC 406 ms
73,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, V, C = map(int, input().split())
vw = [tuple(map(int, input().split())) for _ in range(N)]
dp1 = [0]*(V+1)

for i in range(N):
    v, w = vw[i]
    
    for j in range(V, -1, -1):
        if j-v>=0:
            dp1[j] = max(dp1[j], dp1[j-v]+w+C)

dp2 = [0]*(V+1)

for i in range(V+1):
    for v, w in vw:
        if i+v<=V:
            dp2[i+v] = max(dp2[i+v], dp2[i]+w)

ans = 0

for i in range(V+1):
    ans = max(ans, dp1[i]+dp2[V-i])

print(ans)
0