結果

問題 No.1858 Gorgeous Knapsack
ユーザー ああいいああいい
提出日時 2022-02-28 12:43:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 838 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 273,252 KB
最終ジャッジ日時 2024-07-06 15:04:03
合計ジャッジ時間 9,666 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,528 KB
testcase_01 AC 36 ms
54,240 KB
testcase_02 AC 36 ms
53,700 KB
testcase_03 AC 60 ms
68,944 KB
testcase_04 AC 253 ms
107,028 KB
testcase_05 AC 99 ms
83,284 KB
testcase_06 AC 290 ms
123,080 KB
testcase_07 AC 165 ms
102,684 KB
testcase_08 AC 359 ms
143,236 KB
testcase_09 AC 640 ms
190,856 KB
testcase_10 AC 224 ms
102,976 KB
testcase_11 AC 303 ms
126,028 KB
testcase_12 AC 439 ms
165,672 KB
testcase_13 AC 102 ms
80,236 KB
testcase_14 AC 53 ms
63,792 KB
testcase_15 AC 50 ms
61,716 KB
testcase_16 AC 51 ms
62,500 KB
testcase_17 AC 38 ms
54,312 KB
testcase_18 AC 39 ms
54,388 KB
testcase_19 AC 36 ms
53,444 KB
testcase_20 AC 36 ms
52,632 KB
testcase_21 AC 35 ms
53,264 KB
testcase_22 AC 34 ms
51,936 KB
testcase_23 AC 34 ms
53,216 KB
testcase_24 AC 141 ms
91,004 KB
testcase_25 AC 386 ms
149,952 KB
testcase_26 AC 377 ms
142,492 KB
testcase_27 AC 365 ms
128,952 KB
testcase_28 AC 219 ms
119,920 KB
testcase_29 AC 80 ms
77,024 KB
testcase_30 AC 84 ms
77,188 KB
testcase_31 AC 78 ms
77,316 KB
testcase_32 AC 80 ms
76,852 KB
testcase_33 AC 85 ms
77,544 KB
testcase_34 AC 838 ms
273,024 KB
testcase_35 AC 559 ms
272,792 KB
testcase_36 AC 813 ms
273,252 KB
testcase_37 AC 36 ms
52,684 KB
testcase_38 AC 76 ms
77,028 KB
testcase_39 AC 43 ms
60,596 KB
testcase_40 AC 552 ms
272,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
l = []
for i in range(N):
    v,w = map(int,input().split())
    l.append((v,w))
l.sort(reverse = True,key = lambda s:s[0])
dp = [[0] * (M+1) for _ in range(N+1)]
ans = 0
for i in range(N):
    v,w = l[i]
    for j in range(M+1):
        if j + w <= M:
            tmp = (dp[i][j] + v) * v
            if tmp > ans:
                ans = tmp
    for j in range(M+1):
        dp[i+1][j] = max(dp[i+1][j],dp[i][j])
    for j in range(M+1):
        if j + w <= M:
            dp[i+1][j+w] = max(dp[i+1][j+w],dp[i][j] + v)
print(ans)
0