結果

問題 No.1375 Divide and Update
ユーザー KudeKude
提出日時 2021-02-05 22:32:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 1,643 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 133,748 KB
最終ジャッジ日時 2024-07-02 13:07:14
合計ジャッジ時間 4,623 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,428 KB
testcase_01 AC 37 ms
52,748 KB
testcase_02 AC 37 ms
51,744 KB
testcase_03 AC 37 ms
53,160 KB
testcase_04 AC 37 ms
52,636 KB
testcase_05 AC 37 ms
52,480 KB
testcase_06 AC 37 ms
52,932 KB
testcase_07 AC 36 ms
52,156 KB
testcase_08 AC 37 ms
53,036 KB
testcase_09 AC 37 ms
52,596 KB
testcase_10 AC 145 ms
106,436 KB
testcase_11 AC 137 ms
103,424 KB
testcase_12 AC 103 ms
100,344 KB
testcase_13 AC 97 ms
96,860 KB
testcase_14 AC 166 ms
129,516 KB
testcase_15 AC 163 ms
129,504 KB
testcase_16 AC 169 ms
129,528 KB
testcase_17 AC 160 ms
129,780 KB
testcase_18 AC 160 ms
129,844 KB
testcase_19 AC 160 ms
129,468 KB
testcase_20 AC 142 ms
133,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x, y = map(int, input().split())
a = list(map(int, input().split()))
s = sum(a)
df = [x - a[i] for i in range(n)]
db = [y - a[i] for i in range(n)]

dp_f = []
now = 0
for x in df:
    now = max(x, x + now)
    dp_f.append(now)
dp_b = []

now = 0
for x in reversed(db):
    now = max(x, x + now)
    dp_b.append(now)
dp_b.reverse()

now = -10 ** 18
for i in range(n):
    now = max(now, dp_f[i])
    dp_f[i] = now

now = -10 ** 18
for i in range(n)[::-1]:
    now = max(now, dp_b[i])
    dp_b[i] = now

for i in range(1, n - 1):
    print(s + dp_f[i - 1] + dp_b[i + 1])
0