結果

問題 No.783 門松計画
ユーザー titiatitia
提出日時 2024-02-03 03:20:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,528 ms / 2,000 ms
コード長 1,345 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 126,916 KB
最終ジャッジ日時 2024-09-28 10:44:50
合計ジャッジ時間 5,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,840 KB
testcase_01 AC 45 ms
54,796 KB
testcase_02 AC 47 ms
56,136 KB
testcase_03 AC 47 ms
55,572 KB
testcase_04 AC 45 ms
56,828 KB
testcase_05 AC 43 ms
56,752 KB
testcase_06 AC 44 ms
54,924 KB
testcase_07 AC 44 ms
55,836 KB
testcase_08 AC 43 ms
55,632 KB
testcase_09 AC 44 ms
56,216 KB
testcase_10 AC 316 ms
83,964 KB
testcase_11 AC 1,528 ms
126,916 KB
testcase_12 AC 592 ms
97,488 KB
testcase_13 AC 213 ms
81,616 KB
testcase_14 AC 134 ms
78,544 KB
testcase_15 AC 61 ms
66,736 KB
testcase_16 AC 53 ms
64,764 KB
testcase_17 AC 70 ms
73,012 KB
testcase_18 AC 46 ms
56,100 KB
testcase_19 AC 105 ms
77,244 KB
testcase_20 AC 43 ms
55,628 KB
testcase_21 AC 53 ms
65,280 KB
testcase_22 AC 52 ms
65,028 KB
testcase_23 AC 44 ms
56,552 KB
testcase_24 AC 107 ms
77,352 KB
testcase_25 AC 61 ms
67,800 KB
testcase_26 AC 111 ms
77,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(N):
            for k in range(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)
0