結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,712 KB
testcase_01 AC 30 ms
52,480 KB
testcase_02 AC 32 ms
52,096 KB
testcase_03 AC 44 ms
61,952 KB
testcase_04 AC 103 ms
76,696 KB
testcase_05 AC 60 ms
73,692 KB
testcase_06 AC 95 ms
76,416 KB
testcase_07 AC 88 ms
76,844 KB
testcase_08 AC 135 ms
76,672 KB
testcase_09 AC 166 ms
76,544 KB
testcase_10 AC 94 ms
76,800 KB
testcase_11 AC 122 ms
76,416 KB
testcase_12 AC 154 ms
76,644 KB
testcase_13 AC 74 ms
76,420 KB
testcase_14 AC 37 ms
58,368 KB
testcase_15 AC 34 ms
52,588 KB
testcase_16 AC 39 ms
59,136 KB
testcase_17 AC 33 ms
52,480 KB
testcase_18 AC 33 ms
52,736 KB
testcase_19 AC 32 ms
52,096 KB
testcase_20 AC 31 ms
51,968 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 64 ms
75,776 KB
testcase_25 AC 118 ms
76,800 KB
testcase_26 AC 116 ms
76,872 KB
testcase_27 AC 110 ms
76,760 KB
testcase_28 AC 87 ms
76,548 KB
testcase_29 AC 66 ms
73,728 KB
testcase_30 AC 71 ms
76,672 KB
testcase_31 AC 66 ms
74,496 KB
testcase_32 AC 71 ms
76,416 KB
testcase_33 AC 72 ms
76,288 KB
testcase_34 AC 328 ms
76,928 KB
testcase_35 WA -
testcase_36 AC 351 ms
77,112 KB
testcase_37 AC 33 ms
51,948 KB
testcase_38 AC 59 ms
73,216 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

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