描述
一位店主需要完成一项销售任务,他将要出售的物品排成一排。
从左侧开始,店主以其全价减去位于该物品右侧的第一个价格较低或价格相同的商品的价格。
如果右侧没有价格低于或等于当前商品价格的商品,则以全价出售当前商品。
你需要返回每一个物品实际售出价格。
- 数组 Prices 的长度范围是: [1, 100000]
- Prices[i] 的整数范围是: [1, 1000000]
在线评测地址:领扣题库官网
样例1
输入:
Prices = [2, 3, 1, 2, 4, 2]
输出:
[1, 2, 1, 0, 2, 2]
解释:
第0个和第1个物品右边第一个更低的价格都是1,所以实际售价需要在全价上减去1, 第3个物品右边第一个更低的价格是2,所以实际售价要在全价上面减去2。
样例2
输入:
Prices = [1, 2, 3, 4, 5]
输出:
[1, 2, 3, 4, 5]
解释:
每一个物品都保持原价,他们的右边都没有等于或者更低价格的物品
单调非递减栈来存储之前的值,当出现比栈顶所存值更小的值则可以更新之前的价格。
代码
class Solution:
"""
@param prices: a list of integer
@return: return the actual prices
"""
def FinalDiscountedPrice(self, prices):
# write your code here
s, res = [], [prices[i] for i in range(len(prices))]
for i in range(len(prices)):
while len(s) != 0 and prices[s[-1]] >= prices[i]:
index = s[-1]
s.pop()
res[index] = prices[index] - prices[i]
s.append(i);
return res
更多题解参考:九章官网solution