結果

問題 No.1375 Divide and Update
ユーザー rlangevinrlangevin
提出日時 2023-03-14 12:50:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 132,036 KB
最終ジャッジ日時 2024-09-18 08:00:18
合計ジャッジ時間 5,567 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,384 KB
testcase_01 AC 46 ms
54,856 KB
testcase_02 AC 41 ms
54,288 KB
testcase_03 AC 41 ms
55,296 KB
testcase_04 AC 41 ms
53,676 KB
testcase_05 AC 42 ms
53,464 KB
testcase_06 AC 41 ms
54,164 KB
testcase_07 AC 41 ms
54,464 KB
testcase_08 AC 41 ms
54,056 KB
testcase_09 AC 41 ms
54,180 KB
testcase_10 AC 171 ms
123,640 KB
testcase_11 AC 146 ms
101,228 KB
testcase_12 AC 116 ms
100,160 KB
testcase_13 AC 115 ms
97,536 KB
testcase_14 AC 194 ms
131,428 KB
testcase_15 AC 195 ms
131,344 KB
testcase_16 AC 191 ms
129,932 KB
testcase_17 AC 181 ms
130,088 KB
testcase_18 AC 170 ms
132,036 KB
testcase_19 AC 168 ms
131,536 KB
testcase_20 AC 161 ms
131,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def f(X):
    V = [-10**18] * (N - 2)
    Q = deque()
    val = 0
    for i in range(N - 2):
        Q.append(X[i])
        val += X[i]
        while len(Q) >= 2 and (val < 0 or Q[0] < 0):
            val -= Q.popleft()
            V[i] = max(V[i], val)
        V[i] = max(V[i], val)
    
    for i in range(1, N - 2):
        V[i] = max(V[i], V[i - 1])

    return V

N, X, Y = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(lambda x : X - x, A))
C = list(map(lambda x : Y - x, A))
C.reverse()
V1, V2 = f(B), f(C)
V2.reverse()
S = sum(A)
for i in range(N-2):
    print(S + V1[i] + V2[i])
0