結果
問題 | No.783 門松計画 |
ユーザー | titia |
提出日時 | 2024-02-03 03:20:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,353 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,316 KB |
実行使用メモリ | 67,776 KB |
最終ジャッジ日時 | 2024-09-28 10:44:44 |
合計ジャッジ時間 | 2,316 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 45 ms
56,784 KB |
testcase_02 | WA | - |
testcase_03 | AC | 44 ms
56,388 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 45 ms
55,740 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 43 ms
55,620 KB |
testcase_19 | WA | - |
testcase_20 | AC | 45 ms
55,828 KB |
testcase_21 | AC | 46 ms
56,568 KB |
testcase_22 | AC | 49 ms
64,424 KB |
testcase_23 | AC | 43 ms
55,744 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
N,C=map(int,input().split()) L=list(map(int,input().split())) W=list(map(int,input().split())) from functools import lru_cache @lru_cache(maxsize=None) def calc(a,b,cost): ANS=0 if a==b==0: for i in range(N): if W[i]<=cost: ANS=max(ANS,L[i]+calc(0,L[i],cost-W[i])) return ANS if a==0: for i in range(N): if L[i]!=b and W[i]<=cost: ANS=max(ANS,L[i]+calc(b,L[i],cost-W[i])) return ANS if a<b: for i in range(N): if W[i]<=cost and L[i]<b and L[i]!=a: ANS=max(ANS,L[i]+calc(b,L[i],cost-W[i])) return ANS else: for i in range(N): if W[i]<=cost and L[i]>b and L[i]!=a: ANS=max(ANS,L[i]+calc(b,L[i],cost-W[i])) return ANS if len(set(sorted(L)))<=2: print(0) else: ANS=0 for i in range(N): for j in range(i+1,N): for k in range(j+1,N): if L[i]!=L[j] and L[j]!=L[k] and L[k]!=L[i] and W[i]+W[j]+W[k]<=C: if L[i]<L[j] and L[j]>L[k]: ANS=max(ANS,L[i]+L[j]+L[k]+calc(L[j],L[k],C-W[i]-W[j]-W[k])) if L[i]>L[j] and L[j]<L[k]: ANS=max(ANS,L[i]+L[j]+L[k]+calc(L[j],L[k],C-W[i]-W[j]-W[k])) print(ANS)