結果

問題 No.2232 Miser's Gift
ユーザー chankei271828chankei271828
提出日時 2023-03-03 23:18:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,868 ms / 2,000 ms
コード長 960 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 236,952 KB
最終ジャッジ日時 2024-09-18 00:25:28
合計ジャッジ時間 25,958 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,132 KB
testcase_01 AC 39 ms
54,240 KB
testcase_02 AC 39 ms
54,448 KB
testcase_03 AC 137 ms
85,256 KB
testcase_04 AC 1,089 ms
216,228 KB
testcase_05 AC 58 ms
71,828 KB
testcase_06 AC 35 ms
53,704 KB
testcase_07 AC 66 ms
82,004 KB
testcase_08 AC 87 ms
82,920 KB
testcase_09 AC 86 ms
82,792 KB
testcase_10 AC 86 ms
82,908 KB
testcase_11 AC 88 ms
82,864 KB
testcase_12 AC 86 ms
82,892 KB
testcase_13 AC 147 ms
85,964 KB
testcase_14 AC 150 ms
86,420 KB
testcase_15 AC 149 ms
85,744 KB
testcase_16 AC 146 ms
85,872 KB
testcase_17 AC 155 ms
85,952 KB
testcase_18 AC 155 ms
86,492 KB
testcase_19 AC 151 ms
86,108 KB
testcase_20 AC 149 ms
85,712 KB
testcase_21 AC 150 ms
86,116 KB
testcase_22 AC 161 ms
86,224 KB
testcase_23 AC 1,804 ms
236,952 KB
testcase_24 AC 1,710 ms
236,624 KB
testcase_25 AC 1,678 ms
233,800 KB
testcase_26 AC 1,868 ms
233,324 KB
testcase_27 AC 1,693 ms
235,600 KB
testcase_28 AC 1,017 ms
184,136 KB
testcase_29 AC 1,010 ms
179,084 KB
testcase_30 AC 1,026 ms
180,040 KB
testcase_31 AC 1,018 ms
179,236 KB
testcase_32 AC 1,012 ms
184,844 KB
testcase_33 AC 254 ms
98,152 KB
testcase_34 AC 255 ms
99,644 KB
testcase_35 AC 248 ms
97,444 KB
testcase_36 AC 228 ms
94,524 KB
testcase_37 AC 274 ms
98,200 KB
testcase_38 AC 106 ms
76,724 KB
testcase_39 AC 107 ms
76,384 KB
testcase_40 AC 115 ms
76,752 KB
testcase_41 AC 110 ms
77,324 KB
testcase_42 AC 107 ms
76,836 KB
testcase_43 AC 116 ms
76,744 KB
testcase_44 AC 107 ms
76,612 KB
testcase_45 AC 106 ms
76,764 KB
testcase_46 AC 112 ms
77,028 KB
testcase_47 AC 112 ms
76,704 KB
testcase_48 AC 62 ms
70,564 KB
testcase_49 AC 60 ms
69,752 KB
testcase_50 AC 57 ms
69,472 KB
testcase_51 AC 60 ms
69,436 KB
testcase_52 AC 59 ms
70,016 KB
testcase_53 AC 64 ms
69,056 KB
testcase_54 AC 67 ms
70,724 KB
testcase_55 AC 64 ms
69,380 KB
testcase_56 AC 64 ms
70,240 KB
testcase_57 AC 64 ms
69,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,W=map(int,input().split())
pre=[list(map(int,input().split())) for _ in range(N)]
dp=dict()
#dp[i][j]:i番目の品物までで、重さjになる組み合わせの中での勝ちの総和の最大値
#配る
d=deque()
d.append(0)
dp[0]=0
A=W+5
while d:
    n=d.popleft()
    i,j=divmod(n,A)
    if i==N:
        break
    now=dp.pop(n)
    if (i+1)*A+j not in dp:
        dp[(i+1)*A+j]=0
        d.append((i+1)*A+j)
    if dp[(i+1)*A+j]<now:
        dp[(i+1)*A+j]=now
    w,v=pre[i]
    if j+w<=W:
        if (i+1)*A+j+w not in dp:
            dp[(i+1)*A+j+w]=0
            d.append((i+1)*A+j+w)
        if dp[(i+1)*A+j+w]<now+v:
            dp[(i+1)*A+j+w]=now+v
ans=[]
for j in range(W+1):
    if j==0:
        ans.append(0)
    else:
        if N*A+j not in dp:
            ans.append(ans[-1])
        else:
            ans.append(max(dp[N*A+j],ans[-1]))
ans_now=ans[W]
for X in range(1,W+1):
    print(ans_now-(ans[W-X])+1)
0