結果

問題 No.2232 Miser's Gift
ユーザー chankei271828chankei271828
提出日時 2023-03-03 23:03:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 991 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 237,020 KB
最終ジャッジ日時 2024-09-18 00:14:50
合計ジャッジ時間 10,090 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
56,236 KB
testcase_01 AC 38 ms
53,760 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 135 ms
85,156 KB
testcase_04 AC 1,264 ms
215,356 KB
testcase_05 AC 57 ms
70,528 KB
testcase_06 AC 36 ms
53,504 KB
testcase_07 AC 66 ms
81,536 KB
testcase_08 AC 81 ms
82,936 KB
testcase_09 AC 82 ms
82,688 KB
testcase_10 AC 83 ms
82,688 KB
testcase_11 AC 83 ms
82,816 KB
testcase_12 AC 81 ms
82,688 KB
testcase_13 AC 157 ms
85,872 KB
testcase_14 AC 162 ms
86,032 KB
testcase_15 AC 156 ms
85,860 KB
testcase_16 AC 159 ms
85,504 KB
testcase_17 AC 166 ms
86,036 KB
testcase_18 AC 162 ms
86,308 KB
testcase_19 AC 174 ms
86,156 KB
testcase_20 AC 169 ms
85,544 KB
testcase_21 AC 172 ms
86,152 KB
testcase_22 AC 175 ms
86,256 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,327 ms
183,724 KB
testcase_29 AC 1,287 ms
178,228 KB
testcase_30 AC 1,301 ms
181,280 KB
testcase_31 AC 1,346 ms
178,168 KB
testcase_32 AC 1,354 ms
186,828 KB
testcase_33 AC 262 ms
99,044 KB
testcase_34 AC 275 ms
99,604 KB
testcase_35 AC 272 ms
97,884 KB
testcase_36 AC 246 ms
95,756 KB
testcase_37 AC 269 ms
98,036 KB
testcase_38 AC 114 ms
76,724 KB
testcase_39 AC 119 ms
76,624 KB
testcase_40 AC 122 ms
76,624 KB
testcase_41 AC 121 ms
76,984 KB
testcase_42 AC 112 ms
76,868 KB
testcase_43 AC 115 ms
77,004 KB
testcase_44 AC 126 ms
76,600 KB
testcase_45 AC 123 ms
76,628 KB
testcase_46 AC 127 ms
77,676 KB
testcase_47 AC 127 ms
78,040 KB
testcase_48 AC 71 ms
73,028 KB
testcase_49 AC 63 ms
70,444 KB
testcase_50 AC 61 ms
70,692 KB
testcase_51 AC 61 ms
70,020 KB
testcase_52 AC 61 ms
71,036 KB
testcase_53 AC 61 ms
71,660 KB
testcase_54 AC 62 ms
73,448 KB
testcase_55 AC 59 ms
70,952 KB
testcase_56 AC 60 ms
71,580 KB
testcase_57 AC 58 ms
70,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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