結果

問題 No.1334 Multiply or Add
ユーザー maspymaspy
提出日時 2021-01-08 22:03:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 1,216 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 109,952 KB
最終ジャッジ日時 2024-11-16 11:53:39
合計ジャッジ時間 9,716 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 132 ms
109,568 KB
testcase_04 AC 126 ms
109,952 KB
testcase_05 AC 126 ms
109,696 KB
testcase_06 AC 128 ms
109,696 KB
testcase_07 AC 143 ms
109,568 KB
testcase_08 AC 126 ms
109,824 KB
testcase_09 AC 143 ms
109,568 KB
testcase_10 AC 149 ms
109,824 KB
testcase_11 AC 134 ms
109,824 KB
testcase_12 AC 129 ms
109,952 KB
testcase_13 AC 132 ms
109,696 KB
testcase_14 AC 128 ms
109,824 KB
testcase_15 AC 125 ms
109,440 KB
testcase_16 AC 91 ms
103,680 KB
testcase_17 AC 92 ms
103,424 KB
testcase_18 AC 91 ms
103,424 KB
testcase_19 AC 190 ms
109,568 KB
testcase_20 AC 223 ms
109,824 KB
testcase_21 AC 203 ms
109,440 KB
testcase_22 AC 115 ms
109,312 KB
testcase_23 AC 147 ms
109,440 KB
testcase_24 AC 116 ms
109,696 KB
testcase_25 AC 131 ms
109,696 KB
testcase_26 AC 125 ms
109,568 KB
testcase_27 AC 127 ms
109,952 KB
testcase_28 AC 123 ms
109,440 KB
testcase_29 AC 133 ms
109,568 KB
testcase_30 AC 127 ms
109,440 KB
testcase_31 AC 133 ms
109,440 KB
testcase_32 AC 132 ms
109,568 KB
testcase_33 AC 125 ms
109,824 KB
testcase_34 AC 151 ms
109,568 KB
testcase_35 AC 141 ms
109,568 KB
testcase_36 AC 141 ms
109,440 KB
testcase_37 AC 140 ms
109,568 KB
testcase_38 AC 149 ms
109,568 KB
testcase_39 AC 40 ms
51,712 KB
testcase_40 AC 90 ms
88,832 KB
testcase_41 AC 70 ms
77,824 KB
testcase_42 AC 72 ms
79,232 KB
testcase_43 AC 109 ms
101,376 KB
testcase_44 AC 88 ms
88,960 KB
testcase_45 AC 69 ms
78,976 KB
testcase_46 AC 90 ms
89,088 KB
testcase_47 AC 102 ms
98,688 KB
testcase_48 AC 91 ms
90,880 KB
testcase_49 AC 121 ms
105,728 KB
testcase_50 AC 96 ms
107,008 KB
testcase_51 AC 96 ms
107,264 KB
testcase_52 AC 94 ms
107,776 KB
testcase_53 AC 96 ms
107,904 KB
testcase_54 AC 97 ms
107,264 KB
testcase_55 AC 98 ms
107,520 KB
testcase_56 AC 37 ms
51,840 KB
testcase_57 AC 38 ms
51,456 KB
testcase_58 AC 39 ms
51,584 KB
testcase_59 AC 36 ms
52,096 KB
testcase_60 AC 38 ms
51,840 KB
testcase_61 AC 38 ms
51,840 KB
testcase_62 AC 38 ms
51,968 KB
testcase_63 AC 38 ms
51,840 KB
testcase_64 AC 39 ms
51,840 KB
testcase_65 AC 39 ms
52,096 KB
testcase_66 AC 84 ms
97,152 KB
testcase_67 AC 72 ms
84,992 KB
testcase_68 AC 45 ms
59,392 KB
testcase_69 AC 90 ms
102,400 KB
testcase_70 AC 88 ms
101,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

MOD = 1_000_000_007

def main(A):
    # 総積がでかいなら、端の 1 以外はまとめてしまう
    p = 1
    INF = 1 << 20
    for x in A:
        p = min(p * x, INF)
    if p == INF:
        add = 0
        for x in A:
            if x == 1:
                add += 1
            else:
                break
        for x in A[::-1]:
            if x == 1:
                add += 1
            else:
                break
        p = 1
        for x in A:
            p = p * x % MOD
        return (p + add) % MOD
    # 以下、総積が小さい場合。
    # 途中経過は、"a + b*" or "a+" と書ける。
    # b ごとに optimal な a を持つ
    dp = {}
    max_v = 0
    for x in A:
        newdp = {}
        vv = 0
        for b, a in dp.items():
            # a + b * [x] +
            vv = max(vv, a + b * x)
            # a + b * [x] *
            newdp[b * x] = max(newdp.get(b * x, 0), a)
        newdp[x] = max(newdp.get(x, 0), max_v)
        dp = newdp
        max_v = max(vv, max_v + x)
    return max_v

A = tuple(map(int, read().split()))[1:]

print(main(A))
0