結果

問題 No.2232 Miser's Gift
ユーザー FromBooskaFromBooska
提出日時 2023-03-04 14:38:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 156,308 KB
最終ジャッジ日時 2024-09-18 01:17:30
合計ジャッジ時間 12,442 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 246 ms
156,288 KB
testcase_04 AC 252 ms
155,904 KB
testcase_05 AC 68 ms
73,728 KB
testcase_06 AC 35 ms
51,584 KB
testcase_07 AC 61 ms
77,824 KB
testcase_08 AC 255 ms
155,904 KB
testcase_09 AC 262 ms
155,904 KB
testcase_10 AC 254 ms
155,904 KB
testcase_11 AC 305 ms
155,264 KB
testcase_12 AC 262 ms
155,776 KB
testcase_13 AC 239 ms
155,628 KB
testcase_14 AC 232 ms
156,128 KB
testcase_15 AC 235 ms
155,716 KB
testcase_16 AC 242 ms
156,300 KB
testcase_17 AC 248 ms
156,308 KB
testcase_18 AC 241 ms
156,308 KB
testcase_19 AC 242 ms
156,216 KB
testcase_20 AC 249 ms
156,052 KB
testcase_21 AC 241 ms
155,776 KB
testcase_22 AC 243 ms
156,088 KB
testcase_23 AC 327 ms
155,776 KB
testcase_24 AC 314 ms
155,904 KB
testcase_25 AC 314 ms
155,752 KB
testcase_26 AC 320 ms
155,776 KB
testcase_27 AC 309 ms
155,136 KB
testcase_28 AC 268 ms
155,776 KB
testcase_29 AC 262 ms
155,776 KB
testcase_30 AC 259 ms
155,520 KB
testcase_31 AC 297 ms
155,520 KB
testcase_32 AC 294 ms
155,904 KB
testcase_33 AC 245 ms
155,776 KB
testcase_34 AC 243 ms
156,088 KB
testcase_35 AC 256 ms
156,288 KB
testcase_36 AC 247 ms
155,624 KB
testcase_37 AC 241 ms
155,972 KB
testcase_38 AC 53 ms
64,256 KB
testcase_39 AC 53 ms
64,640 KB
testcase_40 AC 51 ms
64,640 KB
testcase_41 AC 54 ms
63,872 KB
testcase_42 AC 54 ms
64,640 KB
testcase_43 AC 51 ms
64,640 KB
testcase_44 AC 51 ms
64,640 KB
testcase_45 AC 53 ms
64,512 KB
testcase_46 AC 55 ms
64,492 KB
testcase_47 AC 53 ms
64,384 KB
testcase_48 AC 48 ms
61,440 KB
testcase_49 AC 46 ms
61,440 KB
testcase_50 AC 48 ms
61,676 KB
testcase_51 AC 46 ms
61,184 KB
testcase_52 AC 47 ms
61,440 KB
testcase_53 AC 46 ms
61,952 KB
testcase_54 AC 46 ms
61,568 KB
testcase_55 AC 46 ms
61,696 KB
testcase_56 AC 44 ms
61,696 KB
testcase_57 AC 46 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ナップザック問題の変形バージョン
# ナップザックは1度だけやる
# 入力例1でたとえばx=3ならW-3=2を見ると、ナップザックの最大価値3で現在のナップザックW最大価値8
# これでx=3の価値が5なら差がつかない、Wでの値が1を上回れば差がつくので、価値は6とする

N, W = map(int, input().split())
weight = []
value = []
for n in range(N):
    w, v = map(int, input().split())
    weight.append(w)
    value.append(v)
    
dp = [[0] * (W+1) for i in range(N)]

for i in range(N):
    for j in range(W+1):
        # use i
        if j - weight[i] >= 0:
            dp[i][j] = max(dp[i-1][j - weight[i]] + value[i], dp[i-1][j])
        else:
            # no use set i
            dp[i][j] = dp[i-1][j]

#print(dp[N-1])

for x in range(1, W+1):
    current_value = dp[N-1][W-x]
    current_diff = dp[N-1][W] - current_value
    ans = current_diff+1
    print(ans)
0