496. Next Greater Element I
class Solution:
def nextGreaterElement(self, nums1: List[int], nums2: List[int]) -> List[int]:
n = len(nums2)
tmp = [-1] * n
s = []
for i in range(n-1, -1, -1):
while s and s[-1] <= nums2[i]:
s.pop()
if s:
tmp[i] = s[-1]
s.append(nums2[i])
m = {}
for i in range(n):
m[nums2[i]] = tmp[i]
res = []
for num in nums1:
res.append(m[num])
return res