結果

問題 No.2232 Miser's Gift
ユーザー chankei271828chankei271828
提出日時 2023-03-03 22:57:31
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 993 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 524,972 KB
最終ジャッジ日時 2024-09-18 00:07:16
合計ジャッジ時間 4,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,648 KB
testcase_01 AC 39 ms
54,560 KB
testcase_02 AC 37 ms
55,532 KB
testcase_03 AC 171 ms
110,592 KB
testcase_04 MLE -
testcase_05 AC 59 ms
72,536 KB
testcase_06 AC 36 ms
54,924 KB
testcase_07 AC 67 ms
82,596 KB
testcase_08 AC 89 ms
83,108 KB
testcase_09 AC 83 ms
83,152 KB
testcase_10 AC 83 ms
83,200 KB
testcase_11 AC 83 ms
83,104 KB
testcase_12 AC 84 ms
83,304 KB
testcase_13 AC 201 ms
120,648 KB
testcase_14 AC 205 ms
125,408 KB
testcase_15 AC 210 ms
121,008 KB
testcase_16 AC 215 ms
121,032 KB
testcase_17 AC 220 ms
125,720 KB
testcase_18 AC 212 ms
124,996 KB
testcase_19 AC 214 ms
120,612 KB
testcase_20 AC 208 ms
120,504 KB
testcase_21 AC 215 ms
125,356 KB
testcase_22 AC 209 ms
120,696 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
権限があれば一括ダウンロードができます

ソースコード

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
    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(dp[i*10**6+j],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(dp[i*10**6+j]+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