結果

問題 No.2232 Miser's Gift
ユーザー flygonflygon
提出日時 2023-03-03 21:31:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 156,268 KB
最終ジャッジ日時 2024-09-17 22:24:36
合計ジャッジ時間 10,253 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,384 KB
testcase_01 AC 35 ms
52,820 KB
testcase_02 AC 35 ms
52,684 KB
testcase_03 AC 185 ms
155,720 KB
testcase_04 AC 222 ms
156,152 KB
testcase_05 AC 70 ms
76,416 KB
testcase_06 AC 33 ms
53,212 KB
testcase_07 AC 58 ms
78,260 KB
testcase_08 AC 181 ms
156,096 KB
testcase_09 AC 192 ms
155,776 KB
testcase_10 AC 190 ms
155,748 KB
testcase_11 AC 214 ms
156,268 KB
testcase_12 AC 187 ms
156,040 KB
testcase_13 AC 176 ms
156,172 KB
testcase_14 AC 179 ms
155,820 KB
testcase_15 AC 182 ms
155,776 KB
testcase_16 AC 186 ms
155,776 KB
testcase_17 AC 187 ms
155,952 KB
testcase_18 AC 195 ms
155,856 KB
testcase_19 AC 189 ms
155,844 KB
testcase_20 AC 189 ms
155,704 KB
testcase_21 AC 187 ms
156,208 KB
testcase_22 AC 186 ms
156,032 KB
testcase_23 AC 259 ms
155,796 KB
testcase_24 AC 258 ms
155,864 KB
testcase_25 AC 255 ms
155,840 KB
testcase_26 AC 258 ms
155,760 KB
testcase_27 AC 254 ms
156,008 KB
testcase_28 AC 209 ms
156,020 KB
testcase_29 AC 202 ms
155,820 KB
testcase_30 AC 203 ms
155,928 KB
testcase_31 AC 224 ms
155,736 KB
testcase_32 AC 219 ms
155,856 KB
testcase_33 AC 188 ms
156,220 KB
testcase_34 AC 191 ms
155,852 KB
testcase_35 AC 185 ms
155,896 KB
testcase_36 AC 183 ms
156,120 KB
testcase_37 AC 188 ms
155,976 KB
testcase_38 AC 49 ms
64,684 KB
testcase_39 AC 53 ms
65,640 KB
testcase_40 AC 52 ms
65,252 KB
testcase_41 AC 51 ms
65,664 KB
testcase_42 AC 50 ms
65,488 KB
testcase_43 AC 48 ms
65,484 KB
testcase_44 AC 48 ms
64,344 KB
testcase_45 AC 47 ms
65,676 KB
testcase_46 AC 49 ms
64,072 KB
testcase_47 AC 50 ms
64,964 KB
testcase_48 AC 43 ms
60,868 KB
testcase_49 AC 44 ms
61,360 KB
testcase_50 AC 44 ms
61,688 KB
testcase_51 AC 45 ms
61,088 KB
testcase_52 AC 44 ms
62,168 KB
testcase_53 AC 47 ms
62,180 KB
testcase_54 AC 47 ms
61,532 KB
testcase_55 AC 47 ms
61,576 KB
testcase_56 AC 47 ms
61,512 KB
testcase_57 AC 47 ms
61,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,w = map(int,input().split())
wv = [list(map(int,input().split())) for i in range(n)]
INF = 10**15
dp = [-INF]*(w+1) 
dp[0] = 0
for i in range(1,n+1):
  new = [-INF]*(w+1) 
  wi,vi = wv[i-1]
  for j in range(w+1):
    new[j] = dp[j]
    if j >= wi:
      new[j] = max(new[j], dp[j-wi] + vi)
  dp = new

pre = dp[::1]
for i in range(1,w+1):
  pre[i] = max(pre[i-1], pre[i])
mx = max(dp)
for x in range(1,w+1):
  ans = mx - pre[w-x] + 1
  print(ans)
  
0