結果

問題 No.258 回転寿司(2)
ユーザー noriocnorioc
提出日時 2024-07-18 23:48:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 1,001 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 72,968 KB
最終ジャッジ日時 2024-07-18 23:48:29
合計ジャッジ時間 6,639 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
72,968 KB
testcase_01 AC 69 ms
72,556 KB
testcase_02 AC 55 ms
65,968 KB
testcase_03 AC 37 ms
53,948 KB
testcase_04 AC 50 ms
63,220 KB
testcase_05 AC 49 ms
64,108 KB
testcase_06 AC 56 ms
68,840 KB
testcase_07 AC 42 ms
55,108 KB
testcase_08 AC 48 ms
63,316 KB
testcase_09 AC 41 ms
54,620 KB
testcase_10 AC 39 ms
54,008 KB
testcase_11 AC 40 ms
55,472 KB
testcase_12 AC 46 ms
62,852 KB
testcase_13 AC 39 ms
54,204 KB
testcase_14 AC 55 ms
67,960 KB
testcase_15 AC 39 ms
54,788 KB
testcase_16 AC 39 ms
54,708 KB
testcase_17 AC 38 ms
55,064 KB
testcase_18 AC 68 ms
70,076 KB
testcase_19 AC 35 ms
53,664 KB
testcase_20 AC 53 ms
66,924 KB
testcase_21 AC 61 ms
70,948 KB
testcase_22 AC 36 ms
54,600 KB
testcase_23 AC 36 ms
54,012 KB
testcase_24 AC 35 ms
54,452 KB
testcase_25 AC 36 ms
53,572 KB
testcase_26 AC 53 ms
67,048 KB
testcase_27 AC 38 ms
55,268 KB
testcase_28 AC 63 ms
72,800 KB
testcase_29 AC 44 ms
62,364 KB
testcase_30 AC 39 ms
54,016 KB
testcase_31 AC 37 ms
54,760 KB
testcase_32 AC 41 ms
54,540 KB
testcase_33 AC 54 ms
69,128 KB
testcase_34 AC 51 ms
64,612 KB
testcase_35 AC 58 ms
64,564 KB
testcase_36 AC 38 ms
54,420 KB
testcase_37 AC 36 ms
54,484 KB
testcase_38 AC 40 ms
56,492 KB
testcase_39 AC 40 ms
55,088 KB
testcase_40 AC 50 ms
65,324 KB
testcase_41 AC 56 ms
69,048 KB
testcase_42 AC 39 ms
55,148 KB
testcase_43 AC 38 ms
55,040 KB
testcase_44 AC 61 ms
67,672 KB
testcase_45 AC 53 ms
66,880 KB
testcase_46 AC 35 ms
53,688 KB
testcase_47 AC 53 ms
67,516 KB
testcase_48 AC 37 ms
54,540 KB
testcase_49 AC 41 ms
55,228 KB
testcase_50 AC 37 ms
53,536 KB
testcase_51 AC 59 ms
64,820 KB
testcase_52 AC 51 ms
65,612 KB
testcase_53 AC 37 ms
54,768 KB
testcase_54 AC 54 ms
66,288 KB
testcase_55 AC 69 ms
72,716 KB
testcase_56 AC 57 ms
66,664 KB
testcase_57 AC 39 ms
54,356 KB
testcase_58 AC 51 ms
64,792 KB
testcase_59 AC 61 ms
70,812 KB
testcase_60 AC 36 ms
53,292 KB
testcase_61 AC 56 ms
68,260 KB
testcase_62 AC 41 ms
55,020 KB
testcase_63 AC 52 ms
65,788 KB
testcase_64 AC 73 ms
71,792 KB
testcase_65 AC 54 ms
66,888 KB
testcase_66 AC 37 ms
53,704 KB
testcase_67 AC 69 ms
68,988 KB
testcase_68 AC 61 ms
70,272 KB
testcase_69 AC 57 ms
68,104 KB
testcase_70 AC 38 ms
54,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from enum import IntEnum, auto


# ステート遷移
class E(IntEnum):
    EAT = 0
    NOT_EAT = auto()

    def nexts(self):
        match self:
            case E.EAT: return [E.NOT_EAT]
            case E.NOT_EAT: return [E.EAT, E.NOT_EAT]
        assert False

    def cost(self, x: int) -> int:
        match self:
            case E.EAT: return x
            case E.NOT_EAT: return 0
        assert False

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


N = int(input())
V = list(map(int, input().split()))

dp = [[0] * len(E) for _ in range(N+1)]
for i, v in enumerate(V):
    for fm, to in E.states():
        dp[i+1][to] = max(dp[i+1][to], dp[i][fm] + to.cost(v))

# 復元
v = max(dp[N])
ans = []
for i in reversed(range(1, N+1)):
    if dp[i][E.EAT] == v:
        ans.append(i)
        v -= V[i-1]
    elif dp[i][E.NOT_EAT] == v:
        pass
    else:
        assert False

print(max(dp[N]))
print(*reversed(ans))
0