結果
問題 | No.2364 Knapsack Problem |
ユーザー | chankei271828 |
提出日時 | 2023-06-30 22:22:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,051 bytes |
コンパイル時間 | 334 ms |
コンパイル使用メモリ | 82,220 KB |
実行使用メモリ | 77,984 KB |
最終ジャッジ日時 | 2024-07-07 10:13:39 |
合計ジャッジ時間 | 4,904 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
54,528 KB |
testcase_01 | AC | 35 ms
53,888 KB |
testcase_02 | AC | 43 ms
62,208 KB |
testcase_03 | AC | 38 ms
59,904 KB |
testcase_04 | AC | 51 ms
65,792 KB |
testcase_05 | AC | 64 ms
71,168 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 41 ms
60,632 KB |
testcase_09 | AC | 108 ms
76,924 KB |
testcase_10 | AC | 98 ms
76,800 KB |
testcase_11 | AC | 68 ms
73,088 KB |
testcase_12 | AC | 294 ms
77,056 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 307 ms
77,056 KB |
testcase_16 | AC | 282 ms
77,088 KB |
testcase_17 | WA | - |
testcase_18 | AC | 296 ms
77,104 KB |
testcase_19 | AC | 295 ms
76,928 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
from collections import defaultdict 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 bit0 in range(1<<(N+M)): tmp_ans=0 d=defaultdict(int) for i in range(N): if (bit0>>i)&1: tmp_ans+=B[i] d[A[i]]+=1 for j in range(M): if (bit0>>(N+j))&1: tmp_ans-=D[j] d[-C[j]]+=1 test0=[] test1=[] for w in range(1,1+W): if w in d and -w in d: if d[w]>d[-w]: for _ in range(d[w]-d[-w]): test0.append(w) else: for _ in range(d[-w]-d[w]): test1.append(-w) elif w in d: for _ in range(d[w]): test0.append(w) elif -w in d: for _ in range(d[-w]): test1.append(-w) test0.sort() test1.sort(reverse=True) now=0 w_now=0 #print(test0,test1,bit0,bit1) dame=0 while True: if (now==0 and test0==[]) or (now==1 and test1==[]) or dame>=2: break if now==0: while True: if test0==[]: now=1 dame=0 break w=test0.pop() if w_now+w<=W: w_now+=w dame=0 else: test0.append(w) now=1 dame+=1 break else: while True: if test1==[]: now=0 dame=0 break w=test1.pop() if w_now+w>=0: w_now+=w dame=0 else: test1.append(w) now=0 dame+=1 break if test0==[] and test1==[] and 0<=w_now<=W: ans=max(ans,tmp_ans) print(ans)