結果

問題 No.2232 Miser's Gift
ユーザー chankei271828chankei271828
提出日時 2023-03-03 23:11:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,802 ms / 2,000 ms
コード長 944 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 238,588 KB
最終ジャッジ日時 2024-09-18 00:20:00
合計ジャッジ時間 23,476 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 41 ms
53,248 KB
testcase_02 AC 36 ms
53,632 KB
testcase_03 AC 129 ms
84,980 KB
testcase_04 AC 1,003 ms
215,384 KB
testcase_05 AC 58 ms
70,656 KB
testcase_06 AC 36 ms
53,760 KB
testcase_07 AC 64 ms
82,052 KB
testcase_08 AC 80 ms
82,816 KB
testcase_09 AC 83 ms
82,816 KB
testcase_10 AC 81 ms
82,816 KB
testcase_11 AC 80 ms
82,304 KB
testcase_12 AC 80 ms
82,816 KB
testcase_13 AC 152 ms
85,624 KB
testcase_14 AC 158 ms
86,588 KB
testcase_15 AC 161 ms
85,920 KB
testcase_16 AC 151 ms
85,852 KB
testcase_17 AC 156 ms
86,252 KB
testcase_18 AC 156 ms
86,292 KB
testcase_19 AC 164 ms
85,784 KB
testcase_20 AC 144 ms
85,648 KB
testcase_21 AC 159 ms
86,120 KB
testcase_22 AC 158 ms
85,988 KB
testcase_23 AC 1,731 ms
238,588 KB
testcase_24 AC 1,779 ms
236,480 KB
testcase_25 AC 1,802 ms
230,892 KB
testcase_26 AC 1,764 ms
233,620 KB
testcase_27 AC 1,748 ms
233,396 KB
testcase_28 AC 1,077 ms
182,764 KB
testcase_29 AC 1,055 ms
176,840 KB
testcase_30 AC 1,010 ms
180,108 KB
testcase_31 AC 1,082 ms
177,964 KB
testcase_32 AC 1,119 ms
187,388 KB
testcase_33 AC 268 ms
99,332 KB
testcase_34 AC 272 ms
99,576 KB
testcase_35 AC 273 ms
97,508 KB
testcase_36 AC 245 ms
95,804 KB
testcase_37 AC 261 ms
97,228 KB
testcase_38 AC 107 ms
76,704 KB
testcase_39 AC 115 ms
76,684 KB
testcase_40 AC 110 ms
76,824 KB
testcase_41 AC 111 ms
77,636 KB
testcase_42 AC 117 ms
76,408 KB
testcase_43 AC 118 ms
76,984 KB
testcase_44 AC 117 ms
76,392 KB
testcase_45 AC 113 ms
76,424 KB
testcase_46 AC 114 ms
77,072 KB
testcase_47 AC 125 ms
77,168 KB
testcase_48 AC 72 ms
71,296 KB
testcase_49 AC 69 ms
70,400 KB
testcase_50 AC 67 ms
69,504 KB
testcase_51 AC 66 ms
69,632 KB
testcase_52 AC 66 ms
69,888 KB
testcase_53 AC 66 ms
69,888 KB
testcase_54 AC 71 ms
71,552 KB
testcase_55 AC 59 ms
68,480 KB
testcase_56 AC 62 ms
70,016 KB
testcase_57 AC 61 ms
69,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque,defaultdict
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)
    dp[(i+1)*A+j]=max(now,dp[(i+1)*A+j])
    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)
        dp[(i+1)*A+j+w]=max(now+v,dp[(i+1)*A+j+w])
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