結果

問題 No.1375 Divide and Update
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-25 18:10:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 134,392 KB
最終ジャッジ日時 2024-12-16 10:34:39
合計ジャッジ時間 6,324 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 39 ms
53,120 KB
testcase_02 AC 36 ms
52,864 KB
testcase_03 AC 37 ms
52,736 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 36 ms
52,736 KB
testcase_07 AC 37 ms
52,864 KB
testcase_08 AC 37 ms
52,736 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 183 ms
115,276 KB
testcase_11 AC 170 ms
130,288 KB
testcase_12 AC 130 ms
94,844 KB
testcase_13 AC 119 ms
101,088 KB
testcase_14 AC 206 ms
128,452 KB
testcase_15 AC 216 ms
128,556 KB
testcase_16 AC 218 ms
119,744 KB
testcase_17 AC 217 ms
120,248 KB
testcase_18 AC 200 ms
120,044 KB
testcase_19 AC 209 ms
120,100 KB
testcase_20 AC 171 ms
134,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x, y = map(int, input().split())
A = list(map(int, input().split()))

s = sum(A)

from itertools import accumulate
INF = 10**18
C = [0]+A
C = list(accumulate(C))
L = [-INF]
import heapq
q = []
heapq.heapify(q)
heapq.heappush(q, x*0-C[0])
for i in range(1, n+1):
    temp = (x*i-C[i])-q[0]
    L.append(temp)
    heapq.heappush(q, x*i-C[i])
#print(L)
R = [-INF]
q = []
heapq.heapify(q)
heapq.heappush(q, -(y*n-C[n]))
for i in reversed(range(n)):
    temp = -q[0]-(y*i-C[i])
    R.append(temp)
    heapq.heappush(q, -(y*i-C[i]))
R.reverse()
#print(R)
for i in range(1, n+1):
    L[i] = max(L[i-1], L[i])
for i in range(n-1, -1, -1):
    R[i] = max(R[i+1], R[i])
#print(L)
#print(R)
for i in range(2, n):
    ans = s+L[i-1]+R[i]
    print(ans)
0