結果

問題 No.2232 Miser's Gift
ユーザー FromBooskaFromBooska
提出日時 2023-09-12 20:44:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 691 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 155,664 KB
最終ジャッジ日時 2024-06-30 08:21:05
合計ジャッジ時間 14,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 285 ms
155,264 KB
testcase_04 AC 318 ms
155,008 KB
testcase_05 AC 71 ms
72,704 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 65 ms
77,316 KB
testcase_08 AC 296 ms
155,264 KB
testcase_09 AC 300 ms
155,136 KB
testcase_10 AC 295 ms
155,008 KB
testcase_11 AC 295 ms
155,008 KB
testcase_12 AC 297 ms
155,008 KB
testcase_13 AC 292 ms
155,264 KB
testcase_14 AC 322 ms
155,264 KB
testcase_15 AC 290 ms
155,136 KB
testcase_16 AC 290 ms
154,880 KB
testcase_17 AC 287 ms
155,664 KB
testcase_18 AC 289 ms
155,136 KB
testcase_19 AC 286 ms
155,136 KB
testcase_20 AC 295 ms
155,264 KB
testcase_21 AC 285 ms
155,264 KB
testcase_22 AC 288 ms
155,008 KB
testcase_23 AC 316 ms
155,008 KB
testcase_24 AC 315 ms
154,856 KB
testcase_25 AC 329 ms
155,436 KB
testcase_26 AC 317 ms
155,136 KB
testcase_27 AC 317 ms
154,752 KB
testcase_28 AC 306 ms
154,880 KB
testcase_29 AC 308 ms
155,008 KB
testcase_30 AC 307 ms
155,264 KB
testcase_31 AC 305 ms
155,136 KB
testcase_32 AC 307 ms
155,008 KB
testcase_33 AC 292 ms
155,264 KB
testcase_34 AC 290 ms
155,324 KB
testcase_35 AC 293 ms
155,532 KB
testcase_36 AC 289 ms
155,264 KB
testcase_37 AC 290 ms
155,264 KB
testcase_38 AC 61 ms
65,024 KB
testcase_39 AC 57 ms
65,408 KB
testcase_40 AC 57 ms
65,152 KB
testcase_41 AC 57 ms
65,664 KB
testcase_42 AC 58 ms
65,536 KB
testcase_43 AC 57 ms
65,408 KB
testcase_44 AC 62 ms
65,792 KB
testcase_45 AC 57 ms
65,024 KB
testcase_46 AC 57 ms
65,792 KB
testcase_47 AC 57 ms
65,792 KB
testcase_48 AC 49 ms
62,080 KB
testcase_49 AC 50 ms
61,568 KB
testcase_50 AC 52 ms
62,720 KB
testcase_51 AC 53 ms
62,336 KB
testcase_52 AC 51 ms
62,528 KB
testcase_53 AC 52 ms
61,824 KB
testcase_54 AC 50 ms
61,824 KB
testcase_55 AC 50 ms
61,824 KB
testcase_56 AC 50 ms
61,696 KB
testcase_57 AC 50 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ナップザック型dp
# 入力例1でX=4のときは、W=1のときのベスト値を見ると2
# W=5でのベスト値は8だから、その差よりもよければ選ばれる、よって7

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

for i in range(1, N+1):
    w, v = WV[i-1]
    for j in range(W+1):
        # not using
        dp[i][j] = max(dp[i][j], dp[i-1][j])
        # using
        if j+w <= W:
            dp[i][j+w] = max(dp[i][j+w], dp[i-1][j]+v)
    #print(dp[i])
    
mx = dp[N][W]
for i in range(1, W+1):
    ans = mx - dp[N][W-i]+1
    print(ans)
    
0