結果

問題 No.1858 Gorgeous Knapsack
ユーザー ysys
提出日時 2022-03-06 23:05:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 272,768 KB
最終ジャッジ日時 2024-07-21 09:28:23
合計ジャッジ時間 8,080 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 56 ms
65,024 KB
testcase_04 AC 217 ms
111,872 KB
testcase_05 AC 77 ms
73,856 KB
testcase_06 AC 238 ms
111,184 KB
testcase_07 AC 146 ms
87,488 KB
testcase_08 AC 305 ms
133,760 KB
testcase_09 AC 476 ms
177,152 KB
testcase_10 AC 178 ms
105,344 KB
testcase_11 AC 274 ms
128,728 KB
testcase_12 AC 385 ms
154,240 KB
testcase_13 AC 91 ms
81,792 KB
testcase_14 AC 46 ms
60,416 KB
testcase_15 AC 43 ms
59,776 KB
testcase_16 AC 46 ms
60,800 KB
testcase_17 AC 39 ms
52,992 KB
testcase_18 AC 38 ms
52,480 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 37 ms
51,968 KB
testcase_21 AC 38 ms
51,840 KB
testcase_22 AC 37 ms
52,480 KB
testcase_23 AC 38 ms
51,712 KB
testcase_24 AC 118 ms
90,752 KB
testcase_25 AC 357 ms
154,752 KB
testcase_26 AC 296 ms
134,144 KB
testcase_27 AC 285 ms
133,888 KB
testcase_28 AC 199 ms
109,584 KB
testcase_29 AC 60 ms
68,096 KB
testcase_30 AC 64 ms
69,632 KB
testcase_31 AC 63 ms
68,736 KB
testcase_32 AC 57 ms
67,200 KB
testcase_33 AC 67 ms
71,552 KB
testcase_34 AC 477 ms
272,768 KB
testcase_35 AC 458 ms
272,384 KB
testcase_36 AC 459 ms
272,256 KB
testcase_37 AC 37 ms
51,840 KB
testcase_38 AC 55 ms
67,712 KB
testcase_39 AC 39 ms
52,096 KB
testcase_40 AC 454 ms
272,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
T = [tuple(map(int, input().split())) for i in range(N)]
dp = [[0] * (M + 1) for i in range(N + 1)]
T.sort(reverse=True)
ans = 0
TW = 0
for i in range(N):
  v, w = T[i]
  TW += w
  for j in range(min(M, TW + 1)):
    dp[i + 1][j] = max(dp[i + 1][j], dp[i][j])
    if j + w <= M:
      dp[i + 1][j + w] = max(dp[i + 1][j + w], dp[i][j] + v)
      ans = max(ans, dp[i + 1][j + w] * v)

print(ans)
0