結果

問題 No.1947 質より種類数
ユーザー june19312june19312
提出日時 2022-05-21 14:39:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 719 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 278,272 KB
最終ジャッジ日時 2024-09-20 11:48:02
合計ジャッジ時間 13,288 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,864 KB
testcase_01 AC 35 ms
52,288 KB
testcase_02 AC 37 ms
52,640 KB
testcase_03 AC 36 ms
52,404 KB
testcase_04 AC 62 ms
70,652 KB
testcase_05 WA -
testcase_06 AC 57 ms
67,072 KB
testcase_07 AC 66 ms
68,864 KB
testcase_08 AC 65 ms
71,296 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 215 ms
103,808 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 109 ms
83,584 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 63 ms
68,864 KB
testcase_29 AC 1,195 ms
274,832 KB
testcase_30 WA -
testcase_31 AC 38 ms
51,840 KB
testcase_32 AC 36 ms
51,840 KB
testcase_33 WA -
testcase_34 AC 610 ms
273,280 KB
testcase_35 AC 540 ms
272,896 KB
testcase_36 AC 1,143 ms
278,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V,C = map(int,input().split())

vs = [] #値段
ws = [] #価値

for i in range(N):
    v,w = map(int,input().split())
    vs.append(v)
    ws.append(w)

dp = []  #購入したものの価値総計

for i in range(N):
    dp.append([-1]*(V+1))

dp[0][0] = 0

for i in range(N):
    tmp = []
    if i>=1:
        for ii in range(V+1):
            dp[i][ii] = max(dp[i-1][ii],dp[i][ii])

    for ii in range(V+1):
        if dp[i][ii] != -1:
            if ii+vs[i]<=V:
                if dp[i][ii+vs[i]] < dp[i][ii]+ws[i]+C:
                    dp[i][ii+vs[i]] = dp[i][ii]+ws[i]
                    tmp.append(ii+vs[i])

    for j in tmp:
        dp[i][j]+=C

ans = 0
for i in dp[-1]:
    ans = max(ans,i)

print(ans)
0