結果

問題 No.783 門松計画
ユーザー rlangevinrlangevin
提出日時 2023-10-12 12:07:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 1,119 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,500 KB
最終ジャッジ日時 2024-09-14 11:02:10
合計ジャッジ時間 3,949 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
60,800 KB
testcase_01 AC 53 ms
61,312 KB
testcase_02 AC 53 ms
60,928 KB
testcase_03 AC 47 ms
58,368 KB
testcase_04 AC 50 ms
59,392 KB
testcase_05 AC 50 ms
60,672 KB
testcase_06 AC 51 ms
59,264 KB
testcase_07 AC 51 ms
59,392 KB
testcase_08 AC 49 ms
58,368 KB
testcase_09 AC 53 ms
60,416 KB
testcase_10 AC 159 ms
78,368 KB
testcase_11 AC 272 ms
78,500 KB
testcase_12 AC 194 ms
78,428 KB
testcase_13 AC 121 ms
77,948 KB
testcase_14 AC 136 ms
78,108 KB
testcase_15 AC 104 ms
76,544 KB
testcase_16 AC 81 ms
70,272 KB
testcase_17 AC 106 ms
77,312 KB
testcase_18 AC 52 ms
60,032 KB
testcase_19 AC 126 ms
77,876 KB
testcase_20 AC 52 ms
60,032 KB
testcase_21 AC 74 ms
68,352 KB
testcase_22 AC 75 ms
69,376 KB
testcase_23 AC 50 ms
59,648 KB
testcase_24 AC 120 ms
77,632 KB
testcase_25 AC 102 ms
76,928 KB
testcase_26 AC 130 ms
77,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def kadomatsu(a, b, c):
    if a == b or b == c or c == a:
        return False
    if a < b < c or a > b > c:
        return False
    return True

N, C = map(int, input().split())
L = list(map(int, input().split()))
W = list(map(int, input().split()))
M = 50
ans = 0
inf = 10 ** 18
dp = [[[-inf] * (M + 1) for i in range(M + 1)] for j in range(C + 1)] 
for i in range(N):
    for j in range(N):
        for k in range(N):
            if not kadomatsu(L[i], L[j], L[k]):
                continue
            if W[i] + W[j] + W[k] > C:
                continue
            dp[W[i] + W[j] + W[k]][L[j]][L[k]] = max(dp[W[i] + W[j] + W[k]][L[j]][L[k]], L[i] + L[j] + L[k])

for c in range(C + 1):
    for a in range(M + 1):
        for b in range(M + 1):
            if dp[c][a][b] == -inf:
                continue
            for i in range(N):
                if not kadomatsu(a, b, L[i]):
                    continue
                if c + W[i] > C:
                    continue
                dp[c + W[i]][b][L[i]] = max(dp[c + W[i]][b][L[i]], dp[c][a][b] + L[i])
            ans = max(ans, dp[c][a][b])

print(ans)
0