結果

問題 No.2232 Miser's Gift
ユーザー n_nan_na
提出日時 2023-03-03 23:35:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 157,812 KB
最終ジャッジ日時 2024-09-18 00:34:37
合計ジャッジ時間 12,936 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
65,008 KB
testcase_01 AC 44 ms
64,384 KB
testcase_02 AC 44 ms
65,648 KB
testcase_03 AC 187 ms
157,104 KB
testcase_04 AC 279 ms
157,708 KB
testcase_05 AC 149 ms
149,932 KB
testcase_06 AC 44 ms
62,036 KB
testcase_07 AC 60 ms
79,620 KB
testcase_08 AC 157 ms
157,760 KB
testcase_09 AC 156 ms
157,580 KB
testcase_10 AC 157 ms
157,424 KB
testcase_11 AC 158 ms
157,568 KB
testcase_12 AC 159 ms
157,472 KB
testcase_13 AC 171 ms
157,812 KB
testcase_14 AC 172 ms
157,544 KB
testcase_15 AC 174 ms
157,404 KB
testcase_16 AC 171 ms
157,460 KB
testcase_17 AC 175 ms
157,252 KB
testcase_18 AC 174 ms
157,192 KB
testcase_19 AC 173 ms
157,644 KB
testcase_20 AC 174 ms
157,500 KB
testcase_21 AC 176 ms
157,420 KB
testcase_22 AC 178 ms
157,736 KB
testcase_23 AC 324 ms
157,560 KB
testcase_24 AC 332 ms
157,524 KB
testcase_25 AC 327 ms
157,784 KB
testcase_26 AC 331 ms
157,756 KB
testcase_27 AC 320 ms
157,248 KB
testcase_28 AC 257 ms
157,520 KB
testcase_29 AC 251 ms
157,552 KB
testcase_30 AC 250 ms
157,728 KB
testcase_31 AC 256 ms
157,712 KB
testcase_32 AC 257 ms
157,660 KB
testcase_33 AC 195 ms
157,444 KB
testcase_34 AC 201 ms
157,280 KB
testcase_35 AC 195 ms
157,364 KB
testcase_36 AC 191 ms
157,544 KB
testcase_37 AC 205 ms
157,392 KB
testcase_38 AC 149 ms
146,444 KB
testcase_39 AC 155 ms
148,008 KB
testcase_40 AC 152 ms
147,192 KB
testcase_41 AC 158 ms
147,636 KB
testcase_42 AC 153 ms
147,028 KB
testcase_43 AC 156 ms
147,844 KB
testcase_44 AC 162 ms
147,468 KB
testcase_45 AC 155 ms
147,628 KB
testcase_46 AC 157 ms
146,564 KB
testcase_47 AC 152 ms
147,872 KB
testcase_48 AC 148 ms
146,016 KB
testcase_49 AC 154 ms
145,384 KB
testcase_50 AC 149 ms
145,088 KB
testcase_51 AC 143 ms
145,144 KB
testcase_52 AC 148 ms
144,032 KB
testcase_53 AC 148 ms
145,856 KB
testcase_54 AC 151 ms
146,328 KB
testcase_55 AC 149 ms
144,712 KB
testcase_56 AC 146 ms
145,780 KB
testcase_57 AC 148 ms
144,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W = map(int,input().split())

mx = 10**5
dp = [[-1]*(mx+3) for _ in range(N+3)]
dp[0][0] = 0

for i in range(N):
    w,v = map(int,input().split())
    for j in range(mx+1):
        if dp[i][j] == -1: continue
        dp[i+1][j] = max(dp[i][j], dp[i+1][j])
        if j+w <= mx:
            dp[i+1][j+w] = max(dp[i][j]+v, dp[i+1][j+w])

Vmax = max(dp[N][:W+1])
for j in range(1,mx+1):
    dp[N][j] = max(dp[N][j-1], dp[N][j])
    
for x in range(1,W+1):
    rem = W - x
    Vtmp = dp[N][rem]
    Vbob = (Vmax - Vtmp) + 1
    print(Vbob)
            
#for i in range(N+3):
#    print(*dp[i][:W+3])

    
0