結果

問題 No.2364 Knapsack Problem
ユーザー nasutarou1341nasutarou1341
提出日時 2023-06-30 21:35:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 657 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 128,744 KB
最終ジャッジ日時 2024-07-07 09:11:29
合計ジャッジ時間 22,555 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
128,744 KB
testcase_01 AC 38 ms
53,364 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 37 ms
52,828 KB
testcase_04 AC 47 ms
61,880 KB
testcase_05 AC 54 ms
64,616 KB
testcase_06 AC 44 ms
58,936 KB
testcase_07 AC 550 ms
75,932 KB
testcase_08 AC 39 ms
53,232 KB
testcase_09 AC 67 ms
70,396 KB
testcase_10 AC 168 ms
76,040 KB
testcase_11 AC 71 ms
74,388 KB
testcase_12 TLE -
testcase_13 AC 2,974 ms
75,732 KB
testcase_14 AC 2,807 ms
75,908 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 2,660 ms
76,008 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, W = list(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
import itertools
for n in itertools.permutations(range(N), N):
  for m in itertools.permutations(range(M), M):
    w = 0
    v = 0
    ni = 0
    mi = 0
    while True:
      while ni < N:
        if w + A[n[ni]] > W:
          break
        w += A[n[ni]]
        v += B[n[ni]]
        ni += 1
      ans = max(ans, v)
      if mi == M: break
      if w - C[m[mi]] < 0: break
      w -= C[m[mi]]
      v -= D[m[mi]]
      mi += 1
      if ni == N: break
print(ans)
0