結果

問題 No.2889 Rusk
ユーザー noriocnorioc
提出日時 2024-09-14 14:29:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 1,452 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 142,676 KB
最終ジャッジ日時 2024-09-14 14:30:08
合計ジャッジ時間 21,668 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,992 KB
testcase_01 AC 46 ms
53,248 KB
testcase_02 AC 45 ms
52,864 KB
testcase_03 AC 45 ms
53,120 KB
testcase_04 AC 72 ms
62,208 KB
testcase_05 AC 45 ms
53,248 KB
testcase_06 AC 64 ms
63,104 KB
testcase_07 AC 48 ms
53,504 KB
testcase_08 AC 59 ms
61,696 KB
testcase_09 AC 62 ms
62,848 KB
testcase_10 AC 47 ms
53,120 KB
testcase_11 AC 48 ms
53,248 KB
testcase_12 AC 63 ms
63,104 KB
testcase_13 AC 59 ms
62,208 KB
testcase_14 AC 161 ms
78,464 KB
testcase_15 AC 233 ms
87,296 KB
testcase_16 AC 415 ms
111,708 KB
testcase_17 AC 211 ms
83,584 KB
testcase_18 AC 348 ms
97,760 KB
testcase_19 AC 529 ms
124,816 KB
testcase_20 AC 620 ms
125,480 KB
testcase_21 AC 530 ms
123,744 KB
testcase_22 AC 513 ms
123,660 KB
testcase_23 AC 409 ms
111,760 KB
testcase_24 AC 641 ms
122,712 KB
testcase_25 AC 403 ms
111,876 KB
testcase_26 AC 517 ms
124,676 KB
testcase_27 AC 652 ms
126,248 KB
testcase_28 AC 427 ms
116,016 KB
testcase_29 AC 463 ms
119,836 KB
testcase_30 AC 447 ms
119,748 KB
testcase_31 AC 613 ms
126,252 KB
testcase_32 AC 378 ms
106,464 KB
testcase_33 AC 196 ms
81,664 KB
testcase_34 AC 694 ms
134,516 KB
testcase_35 AC 701 ms
134,256 KB
testcase_36 AC 717 ms
134,256 KB
testcase_37 AC 715 ms
134,516 KB
testcase_38 AC 686 ms
134,264 KB
testcase_39 AC 621 ms
136,168 KB
testcase_40 AC 520 ms
123,692 KB
testcase_41 AC 646 ms
142,676 KB
testcase_42 AC 505 ms
112,768 KB
testcase_43 AC 306 ms
96,256 KB
testcase_44 AC 585 ms
135,312 KB
testcase_45 AC 495 ms
108,800 KB
testcase_46 AC 237 ms
87,296 KB
testcase_47 AC 323 ms
96,896 KB
testcase_48 AC 552 ms
128,476 KB
testcase_49 AC 45 ms
52,992 KB
testcase_50 AC 45 ms
52,992 KB
testcase_51 AC 46 ms
53,120 KB
testcase_52 AC 44 ms
53,120 KB
testcase_53 AC 44 ms
53,120 KB
testcase_54 AC 678 ms
135,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from enum import IntEnum, auto


# ステート遷移
class E(IntEnum):
    S = 0              # 開始
    Nothing1 = auto()
    Nothing2 = auto()
    Nothing3 = auto()
    Single1  = auto()
    Single2  = auto()
    Both     = auto()

    def nexts(self):
        match self:
            case E.S: return [E.Nothing1, E.Single1, E.Both]
            case E.Nothing1: return [E.Nothing1, E.Single1, E.Both]
            case E.Nothing2: return [E.Nothing2, E.Single2]
            case E.Nothing3: return [E.Nothing3]
            case E.Single1: return [E.Single1, E.Both, E.Nothing2]
            case E.Single2: return [E.Single2, E.Nothing3]
            case E.Both: return [E.Both, E.Single2, E.Nothing3]
        assert False

    def cost(self, a, b, c):
        match self:
            case E.S: return 0
            case E.Nothing1 | E.Nothing2 | E.Nothing3: return a
            case E.Single1 | E.Single2: return b
            case E.Both: return c
        assert False

    @staticmethod
    def states():
        for fm in E:
            for to in fm.nexts():
                yield fm, to


N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = list(map(int, input().split()))

dp = [[0] * len(E) for _ in range(N+1)]
for i, (a, b, c) in enumerate(zip(A, B, C)):
    for fm, to in E.states():
        dp[i+1][to] = max(dp[i+1][to], dp[i][fm] + to.cost(a, b, c))

ans = max(dp[N][s] for s in E)
print(ans)
0