結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 75 ms
73,088 KB
testcase_05 WA -
testcase_06 AC 70 ms
70,144 KB
testcase_07 AC 78 ms
72,832 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 69 ms
68,352 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 1,206 ms
274,432 KB
testcase_30 WA -
testcase_31 AC 40 ms
51,968 KB
testcase_32 AC 36 ms
51,584 KB
testcase_33 WA -
testcase_34 AC 533 ms
273,152 KB
testcase_35 AC 519 ms
272,712 KB
testcase_36 AC 1,065 ms
277,856 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 = []
    for ii in range(V+1):
        if i>=1:
            dp[i][ii] = max(dp[i-1][ii],dp[i][ii])

        if dp[i][ii] != -1:
            if ii+vs[i]<=V:
                if dp[i-1][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