classSolution:defmaximumSumOfHeights(self, a: List[int])->int:
n =len(a)
suf =[0]*(n +1)
st =[n]# 哨兵
s =0for i inrange(n -1,-1,-1):
x = a[i]whilelen(st)>1and x <= a[st[-1]]:
j = st.pop()
s -= a[j]*(st[-1]- j)# 撤销之前加到 s 中的
s += x *(st[-1]- i)# 从 i 到 st[-1]-1 都是 x
suf[i]= s
st.append(i)
ans = s
st =[-1]# 哨兵
pre =0for i, x inenumerate(a):whilelen(st)>1and x <= a[st[-1]]:
j = st.pop()
pre -= a[j]*(j - st[-1])# 撤销之前加到 pre 中的
pre += x *(i - st[-1])# 从 st[-1]+1 到 i 都是 x
ans =max(ans, pre + suf[i +1])
st.append(i)return ans