結果
問題 | No.2364 Knapsack Problem |
ユーザー | shogo314 |
提出日時 | 2023-06-30 21:34:14 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 856 bytes |
コンパイル時間 | 180 ms |
コンパイル使用メモリ | 82,120 KB |
実行使用メモリ | 83,136 KB |
最終ジャッジ日時 | 2024-07-07 09:08:20 |
合計ジャッジ時間 | 22,218 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
59,160 KB |
testcase_01 | AC | 39 ms
52,832 KB |
testcase_02 | AC | 44 ms
59,240 KB |
testcase_03 | AC | 40 ms
52,344 KB |
testcase_04 | AC | 48 ms
60,428 KB |
testcase_05 | AC | 60 ms
67,256 KB |
testcase_06 | AC | 49 ms
62,284 KB |
testcase_07 | AC | 475 ms
76,104 KB |
testcase_08 | AC | 39 ms
53,552 KB |
testcase_09 | AC | 71 ms
72,612 KB |
testcase_10 | AC | 174 ms
75,936 KB |
testcase_11 | AC | 59 ms
70,668 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 2,684 ms
75,988 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 2,835 ms
75,856 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
from itertools import permutations 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())) D = list(map(int, input().split())) ans = 0 for s in permutations(range(N)): for t in permutations(range(M)): i, j = 0, 0 w = 0 v = 0 # print(list(s), list(t)) while True: # print((w, v), (i, j)) if i < N and w+A[s[i]] <= W: w += A[s[i]] v += B[s[i]] ans = max(ans, v) i += 1 continue if j < M and w - C[t[j]] >= 0: w -= C[t[j]] v -= D[t[j]] ans = max(ans, v) j += 1 continue break # print((w, v), (i, j)) print(ans)