結果

問題 No.783 門松計画
ユーザー shotoyooshotoyoo
提出日時 2021-07-22 15:19:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 1,226 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 79,156 KB
最終ジャッジ日時 2024-07-17 14:47:58
合計ジャッジ時間 4,484 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
77,440 KB
testcase_01 AC 103 ms
77,848 KB
testcase_02 AC 102 ms
77,568 KB
testcase_03 AC 61 ms
67,712 KB
testcase_04 AC 91 ms
77,640 KB
testcase_05 AC 103 ms
77,332 KB
testcase_06 AC 98 ms
77,568 KB
testcase_07 AC 91 ms
77,056 KB
testcase_08 AC 76 ms
74,808 KB
testcase_09 AC 105 ms
77,184 KB
testcase_10 AC 188 ms
79,156 KB
testcase_11 AC 271 ms
78,960 KB
testcase_12 AC 236 ms
79,104 KB
testcase_13 AC 160 ms
79,076 KB
testcase_14 AC 169 ms
78,720 KB
testcase_15 AC 127 ms
78,592 KB
testcase_16 AC 114 ms
77,952 KB
testcase_17 AC 145 ms
78,848 KB
testcase_18 AC 76 ms
75,136 KB
testcase_19 AC 155 ms
78,452 KB
testcase_20 AC 88 ms
77,568 KB
testcase_21 AC 93 ms
77,236 KB
testcase_22 AC 92 ms
77,568 KB
testcase_23 AC 58 ms
66,688 KB
testcase_24 AC 129 ms
78,208 KB
testcase_25 AC 125 ms
78,208 KB
testcase_26 AC 153 ms
78,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))

# list 多重リスト生成
def dlist(*l, fill=None):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]
n,c = list(map(int, input().split()))
l = list(map(int, input().split()))
w = list(map(int, input().split()))
index = list(range(n))
index.sort(key=lambda i: w[i])
l = [l[i] for i in index]
w = [w[i] for i in index]
inf = 10**12
dp = dlist(51,51,c+1,fill=-inf)
dp[0][0][0] = 0
ans = 0
for k in range(c+1):
    for i in range(51):
        for j in range(51):
            val = dp[i][j][k]
            for ii in range(n):
                ll = l[ii]
                ww = w[ii]
                if ww+k>c:
                    break
                if ll==i or ll==j:
                    continue
                if i!=0 and j!=0:
                    if (j-i)*(ll-j)>0:
                        continue
                    ans = max(ans, val+ll)
                dp[j][ll][ww+k] = max(dp[j][ll][ww+k], val+ll)
#     print(dp)
print(ans)
0