結果

問題 No.1858 Gorgeous Knapsack
ユーザー ああいいああいい
提出日時 2022-02-28 12:59:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 419 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 77,104 KB
最終ジャッジ日時 2024-07-06 15:19:53
合計ジャッジ時間 5,426 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,364 KB
testcase_01 AC 39 ms
52,376 KB
testcase_02 AC 38 ms
52,852 KB
testcase_03 AC 46 ms
61,524 KB
testcase_04 AC 111 ms
76,516 KB
testcase_05 AC 65 ms
74,020 KB
testcase_06 AC 115 ms
76,416 KB
testcase_07 AC 100 ms
76,768 KB
testcase_08 AC 165 ms
76,724 KB
testcase_09 AC 189 ms
76,684 KB
testcase_10 AC 113 ms
76,712 KB
testcase_11 AC 120 ms
76,648 KB
testcase_12 AC 188 ms
76,804 KB
testcase_13 AC 86 ms
76,568 KB
testcase_14 AC 44 ms
59,036 KB
testcase_15 AC 39 ms
52,516 KB
testcase_16 AC 45 ms
59,912 KB
testcase_17 AC 39 ms
52,732 KB
testcase_18 AC 39 ms
52,072 KB
testcase_19 AC 38 ms
52,676 KB
testcase_20 AC 38 ms
52,416 KB
testcase_21 AC 38 ms
52,332 KB
testcase_22 AC 39 ms
53,544 KB
testcase_23 AC 39 ms
52,272 KB
testcase_24 AC 74 ms
75,800 KB
testcase_25 AC 135 ms
76,924 KB
testcase_26 AC 134 ms
76,652 KB
testcase_27 AC 125 ms
76,524 KB
testcase_28 AC 105 ms
76,536 KB
testcase_29 AC 73 ms
73,004 KB
testcase_30 AC 78 ms
74,752 KB
testcase_31 AC 74 ms
73,300 KB
testcase_32 AC 86 ms
76,680 KB
testcase_33 AC 76 ms
74,452 KB
testcase_34 AC 419 ms
77,104 KB
testcase_35 AC 102 ms
76,740 KB
testcase_36 AC 392 ms
76,940 KB
testcase_37 AC 39 ms
52,948 KB
testcase_38 AC 70 ms
74,348 KB
testcase_39 AC 43 ms
59,600 KB
testcase_40 AC 103 ms
76,488 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)]
dp = [0] * (M+1)
ans = 0
for i in range(N):
    v,w = l[i]
    nx = dp.copy()
    tmp = -1
    for j in range(M+1-w):
        if tmp < dp[j]:
            tmp = dp[j]
    if tmp >= 0 and ans < (tmp + v) * v:
        ans = (tmp + v) * v
    for j in range(M+1-w):
        nx[j+w] = max(nx[j+w],dp[j] + v)
    dp = nx
print(ans)
0