結果

問題 No.1858 Gorgeous Knapsack
ユーザー ああいいああいい
提出日時 2022-02-28 12:56:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 507 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 77,060 KB
最終ジャッジ日時 2024-07-06 15:16:28
合計ジャッジ時間 4,502 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,828 KB
testcase_01 AC 30 ms
52,564 KB
testcase_02 WA -
testcase_03 AC 44 ms
61,940 KB
testcase_04 AC 107 ms
77,060 KB
testcase_05 AC 53 ms
74,048 KB
testcase_06 AC 94 ms
76,420 KB
testcase_07 AC 83 ms
76,688 KB
testcase_08 AC 137 ms
76,280 KB
testcase_09 AC 169 ms
76,840 KB
testcase_10 AC 95 ms
76,616 KB
testcase_11 AC 113 ms
76,360 KB
testcase_12 AC 155 ms
76,584 KB
testcase_13 AC 71 ms
76,848 KB
testcase_14 AC 36 ms
58,556 KB
testcase_15 AC 33 ms
52,736 KB
testcase_16 AC 37 ms
60,172 KB
testcase_17 AC 32 ms
52,916 KB
testcase_18 AC 33 ms
52,800 KB
testcase_19 AC 32 ms
52,212 KB
testcase_20 AC 31 ms
52,000 KB
testcase_21 AC 30 ms
52,884 KB
testcase_22 AC 32 ms
53,420 KB
testcase_23 AC 31 ms
52,024 KB
testcase_24 AC 61 ms
75,944 KB
testcase_25 AC 106 ms
76,604 KB
testcase_26 AC 116 ms
76,768 KB
testcase_27 AC 109 ms
76,420 KB
testcase_28 AC 86 ms
76,620 KB
testcase_29 AC 62 ms
73,588 KB
testcase_30 AC 69 ms
76,504 KB
testcase_31 AC 63 ms
73,948 KB
testcase_32 AC 71 ms
76,624 KB
testcase_33 AC 65 ms
74,912 KB
testcase_34 AC 357 ms
76,936 KB
testcase_35 AC 81 ms
77,020 KB
testcase_36 AC 336 ms
76,912 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 35 ms
58,996 KB
testcase_40 AC 80 ms
76,960 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 = 0
    for j in range(M+1-w):
        if tmp < dp[j]:
            tmp = dp[j]
    if 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