結果

問題 No.37 遊園地のアトラクション
ユーザー ytftytft
提出日時 2022-11-04 21:35:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 621 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 70,912 KB
最終ジャッジ日時 2024-07-18 19:18:12
合計ジャッジ時間 2,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,312 KB
testcase_01 AC 37 ms
59,520 KB
testcase_02 AC 46 ms
62,080 KB
testcase_03 AC 43 ms
62,720 KB
testcase_04 AC 41 ms
61,952 KB
testcase_05 AC 43 ms
62,336 KB
testcase_06 AC 42 ms
61,312 KB
testcase_07 AC 55 ms
68,992 KB
testcase_08 AC 41 ms
61,312 KB
testcase_09 AC 39 ms
60,032 KB
testcase_10 AC 51 ms
66,944 KB
testcase_11 AC 49 ms
66,560 KB
testcase_12 AC 42 ms
61,952 KB
testcase_13 AC 42 ms
62,464 KB
testcase_14 AC 40 ms
61,568 KB
testcase_15 AC 42 ms
61,696 KB
testcase_16 AC 44 ms
64,128 KB
testcase_17 AC 43 ms
63,232 KB
testcase_18 AC 54 ms
68,352 KB
testcase_19 AC 39 ms
59,904 KB
testcase_20 AC 44 ms
62,872 KB
testcase_21 AC 39 ms
60,416 KB
testcase_22 AC 56 ms
70,912 KB
testcase_23 AC 33 ms
51,712 KB
testcase_24 AC 32 ms
52,224 KB
testcase_25 AC 31 ms
51,968 KB
testcase_26 AC 31 ms
52,120 KB
testcase_27 AC 42 ms
61,568 KB
testcase_28 AC 35 ms
58,496 KB
testcase_29 AC 41 ms
61,184 KB
testcase_30 AC 31 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
def knapsack(items,capacity):
    N=len(items)
    dp=[[0 for i in range(capacity+1)] for j in range(N+1)]
    for i in range(N):
        for j in range(min(capacity+1,items[i][0])):
            dp[i+1][j]=dp[i][j]
        for j in range(items[i][0],capacity+1):
            dp[i+1][j]=max(dp[i][j],dp[i][j-items[i][0]]+items[i][1])
    return dp[N][capacity]
T,N=[int(input()) for i in range(2)]
C=list(map(int,input().split()))
V=list(map(int,input().split()))
items=[]
for i in range(N):
	while V[i]:
		items.append([C[i],V[i]])
		V[i]//=2
print(knapsack(items,T))
0