結果

問題 No.2364 Knapsack Problem
ユーザー nasutarou1341nasutarou1341
提出日時 2023-06-30 21:34:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 657 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 76,956 KB
最終ジャッジ日時 2024-07-07 09:09:43
合計ジャッジ時間 30,081 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,484 KB
testcase_01 WA -
testcase_02 AC 45 ms
61,368 KB
testcase_03 AC 36 ms
52,952 KB
testcase_04 AC 41 ms
60,060 KB
testcase_05 AC 54 ms
67,556 KB
testcase_06 WA -
testcase_07 AC 552 ms
76,336 KB
testcase_08 AC 33 ms
52,344 KB
testcase_09 AC 75 ms
75,436 KB
testcase_10 AC 135 ms
75,728 KB
testcase_11 AC 61 ms
73,280 KB
testcase_12 WA -
testcase_13 TLE -
testcase_14 WA -
testcase_15 TLE -
testcase_16 WA -
testcase_17 TLE -
testcase_18 WA -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

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]]
      ni += 1
      if ni == N: break
print(ans)
0