結果

問題 No.1375 Divide and Update
ユーザー gorugo30gorugo30
提出日時 2021-02-05 22:01:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 115,280 KB
最終ジャッジ日時 2024-07-02 12:30:49
合計ジャッジ時間 4,417 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 140 ms
107,008 KB
testcase_11 AC 133 ms
105,984 KB
testcase_12 AC 104 ms
93,516 KB
testcase_13 AC 96 ms
90,880 KB
testcase_14 AC 157 ms
110,460 KB
testcase_15 AC 157 ms
110,580 KB
testcase_16 AC 155 ms
110,260 KB
testcase_17 AC 155 ms
110,464 KB
testcase_18 AC 155 ms
110,324 KB
testcase_19 AC 154 ms
110,640 KB
testcase_20 AC 134 ms
115,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
A = list(map(int, input().split()))
dpX = [0] * N
dpX[0] = X - A[0]
for i in range(1, N):
    dpX[i] = max(dpX[i - 1], 0) + X - A[i]
maxX = [dpX[0]] * N
for i in range(1, N):
    maxX[i] = max(maxX[i - 1], dpX[i])
A = A[::-1]
dpY = [0] * N
dpY[0] = Y - A[0]
for i in range(1, N):
    dpY[i] = max(dpY[i - 1], 0) + Y - A[i]
maxY = [dpY[0]] * N
for i in range(1, N):
    maxY[i] = max(maxY[i - 1], dpY[i])

A = A[::-1]
sumA = sum(A)
maxY = maxY[::-1]
for i in range(1, N - 1):
    print(sumA + maxX[i - 1] + maxY[i + 1])
0