結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,864 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 36 ms
52,864 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 37 ms
52,864 KB
testcase_06 AC 37 ms
53,248 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 36 ms
52,736 KB
testcase_09 AC 36 ms
52,736 KB
testcase_10 AC 187 ms
115,676 KB
testcase_11 AC 164 ms
130,364 KB
testcase_12 AC 125 ms
94,840 KB
testcase_13 AC 120 ms
100,884 KB
testcase_14 AC 199 ms
129,004 KB
testcase_15 AC 199 ms
128,488 KB
testcase_16 AC 210 ms
120,128 KB
testcase_17 AC 207 ms
120,052 KB
testcase_18 AC 206 ms
120,432 KB
testcase_19 AC 206 ms
120,052 KB
testcase_20 AC 167 ms
134,388 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