結果
問題 | No.2730 Two Types Luggage |
ユーザー | NP |
提出日時 | 2024-04-19 21:33:41 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 566 bytes |
コンパイル時間 | 440 ms |
コンパイル使用メモリ | 82,164 KB |
実行使用メモリ | 247,592 KB |
最終ジャッジ日時 | 2024-10-11 14:14:21 |
合計ジャッジ時間 | 11,854 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
51,712 KB |
testcase_01 | AC | 41 ms
51,712 KB |
testcase_02 | AC | 42 ms
51,584 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 61 ms
68,992 KB |
testcase_11 | AC | 866 ms
208,856 KB |
testcase_12 | AC | 1,058 ms
246,664 KB |
testcase_13 | AC | 234 ms
166,280 KB |
testcase_14 | AC | 530 ms
208,732 KB |
testcase_15 | AC | 239 ms
107,392 KB |
testcase_16 | AC | 280 ms
116,116 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
ソースコード
def knapsack(N, M, W, A, B, C): dp = [0] * (W + 1) for i in range(N): for w in range(W, 0, -1): if w - 1 >= 0: dp[w] = max(dp[w], dp[w - 1] + A[i]) items = list(zip(B, C)) items.sort() for i in range(M): b, c = items[i] for w in range(W, b - 1, -1): dp[w] = max(dp[w], dp[w - b] + c) return dp[W] N, M, W = map(int, input().split()) A = list(map(int, input().split())) B = list(map(int, input().split())) C = list(map(int, input().split())) print(knapsack(N, M, W, A, B, C))