結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,712 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 32 ms
52,352 KB
testcase_03 AC 42 ms
60,928 KB
testcase_04 AC 104 ms
76,784 KB
testcase_05 AC 64 ms
73,984 KB
testcase_06 AC 104 ms
76,416 KB
testcase_07 AC 89 ms
76,544 KB
testcase_08 AC 140 ms
76,616 KB
testcase_09 AC 181 ms
76,748 KB
testcase_10 AC 104 ms
76,544 KB
testcase_11 AC 110 ms
76,416 KB
testcase_12 AC 161 ms
77,424 KB
testcase_13 AC 80 ms
76,756 KB
testcase_14 AC 39 ms
59,136 KB
testcase_15 AC 33 ms
52,480 KB
testcase_16 AC 39 ms
60,032 KB
testcase_17 AC 33 ms
52,480 KB
testcase_18 AC 33 ms
52,224 KB
testcase_19 AC 32 ms
52,224 KB
testcase_20 AC 31 ms
52,096 KB
testcase_21 AC 32 ms
51,968 KB
testcase_22 AC 32 ms
51,944 KB
testcase_23 AC 32 ms
52,608 KB
testcase_24 AC 69 ms
75,776 KB
testcase_25 AC 120 ms
76,592 KB
testcase_26 AC 113 ms
76,880 KB
testcase_27 AC 121 ms
76,288 KB
testcase_28 AC 92 ms
76,416 KB
testcase_29 AC 69 ms
72,704 KB
testcase_30 AC 75 ms
74,752 KB
testcase_31 AC 69 ms
73,728 KB
testcase_32 AC 73 ms
74,112 KB
testcase_33 AC 72 ms
74,752 KB
testcase_34 AC 314 ms
77,088 KB
testcase_35 AC 91 ms
77,056 KB
testcase_36 AC 311 ms
76,672 KB
testcase_37 AC 33 ms
51,968 KB
testcase_38 AC 66 ms
72,960 KB
testcase_39 AC 38 ms
58,496 KB
testcase_40 AC 90 ms
76,800 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()
    for j in range(M+1):
        if j + w <= M:
            tmp = (dp[j] + v) * v
            if tmp > ans:
                ans = tmp
        else:
            break
    for j in range(M+1):
        if j + w <= M:
            nx[j+w] = max(nx[j+w],dp[j] + v)
        else:
            break
    dp = nx
print(ans)
0