860.柠檬水找零
在柠檬水摊上,每一杯柠檬水的售价为 5
美元。顾客排队购买你的产品,(按账单 bills
支付的顺序)一次购买一杯。
每位顾客只买一杯柠檬水,然后向你付 5
美元、10
美元或 20
美元。你必须给每个顾客正确找零,也就是说净交易是每位顾客向你支付 5
美元。
注意,一开始你手头没有任何零钱。
给你一个整数数组 bills
,其中 bills[i]
是第 i
位顾客付的账。如果你能给每位顾客正确找零,返回 true
,否则返回 false
。
class Solution:
def lemonadeChange(self, bills: List[int]) -> bool:
five_dollar, ten_dollar, twenty_dollar = 0, 0, 0
for i in range(len(bills)):
if bills[i] == 5:
five_dollar += 1
elif bills[i] == 10:
if five_dollar >= 1:
ten_dollar += 1
five_dollar -= 1
else:
return False
elif bills[i] == 20:
if ten_dollar >= 1 and five_dollar >= 1:
ten_dollar -= 1
five_dollar -= 1
elif five_dollar >= 3:
five_dollar -= 3
else:
return False
return True
406.根据身高重建队列
假设有打乱顺序的一群人站成一个队列,数组 people
表示队列中一些人的属性(不一定按顺序)。每个 people[i] = [hi, ki]
表示第 i
个人的身高为 hi
,前面 正好 有 ki
个身高大于或等于 hi
的人。
请你重新构造并返回输入数组 people
所表示的队列。返回的队列应该格式化为数组 queue
,其中 queue[j] = [hj, kj]
是队列中第 j
个人的属性(queue[0]
是排在队列前面的人)。
class Solution:
def reconstructQueue(self, people: List[List[int]]) -> List[List[int]]:
people.sort(key = lambda x: (-x[0], x[1]))
res = []
for person in people:
res.insert(person[1], person)
return res
452.用最少数量的箭引爆气球
有一些球形气球贴在一堵用 XY 平面表示的墙面上。墙面上的气球记录在整数数组 points
,其中points[i] = [xstart, xend]
表示水平直径在 xstart
和 xend
之间的气球。你不知道气球的确切 y 坐标。
一支弓箭可以沿着 x 轴从不同点 完全垂直 地射出。在坐标 x
处射出一支箭,若有一个气球的直径的开始和结束坐标为 x``start
,x``end
, 且满足 xstart ≤ x ≤ x``end
,则该气球会被 引爆 。可以射出的弓箭的数量 没有限制 。 弓箭一旦被射出之后,可以无限地前进。
给你一个数组 points
,返回引爆所有气球所必须射出的 最小 弓箭数 。
class Solution:
def findMinArrowShots(self, points: List[List[int]]) -> int:
res = 1
points.sort(key = lambda x : x[0])
for i in range(1, len(points)):
if points[i - 1][1] < points[i][0]:
res += 1
else:
points[i][1] = min(points[i-1][1], points[i][1])
return res