思路:先按照身高h倒排,h相同,k大的往后排,然后从高到矮遍历,根据k插到相应的位置
为什么这么做:先把高个的排好了,相对位置也就基本确定了,矮个的无论怎么排,都不影响高个的位置
class Solution:
def reconstructQueue(self, people: List[List[int]]) -> List[List[int]]:
# 根据h倒排,h相同时,k大的往后排
people.sort(key = lambda x: (-x[0], x[1]))
# print(people)
queue = []
# 根据k插入
for p in people:
queue.insert(p[1], p) # 插到k位置上,表示前面有k个比我高的
return queue