leetcode [739] 每日温度
Contact me:
Blog -> https://cugtyt.github.io/blog/index
Email -> cugtyt@qq.com
GitHub -> Cugtyt@GitHub
根据每日 气温 列表,请重新生成一个列表,对应位置的输入是你需要再等待多久温度才会升高超过该日的天数。如果之后都不会升高,请在该位置用 0 来代替。
例如,给定一个列表 temperatures = [73, 74, 75, 71, 69, 72, 76, 73],你的输出应该是 [1, 1, 4, 2, 1, 1, 0, 0]。
提示:气温 列表长度的范围是 [1, 30000]。每个气温的值的均为华氏度,都是在 [30, 100] 范围内的整数。
思路:从后往前,维持一个坐标栈,让栈坐标指示的元素递减,如果当前元素比栈顶元素大,抛出。栈顶元素坐标和当前坐标之差就是还需要多久。
class Solution:
def dailyTemperatures(self, T: List[int]) -> List[int]:
if len(T) == 0:
return 0
stack = [len(T) - 1]
res = [0]
for i in range(len(T) - 2, -1, -1):
while stack and T[stack[-1]] <= T[i]:
stack.pop()
res.append(stack[-1] - i if stack else 0)
stack.append(i)
res = res[::-1]
return res