假设有打乱顺序的一群人站成一个队列。 每个人由一个整数对(h, k)表示,其中h是这个人的身高,k是排在这个人前面且身高大于或等于h的人数。 编写一个算法来重建这个队列。
注意:
总人数少于1100人。
示例
输入:
[[7,0], [4,4], [7,1], [5,0], [6,1], [5,2]]
输出:
[[5,0], [7,0], [5,2], [6,1], [4,4], [7,1]]
用到了list的sort方法,要熟悉sort方法的一些用法比较好做,这个关键就是先排高的,然后按照k值插入矮的
class Solution(object):
def reconstructQueue(self, people):
"""
:type people: List[List[int]]
:rtype: List[List[int]]
"""
def sortkey(x):
return -x[0],x[1]
people.sort(key = sortkey)
res = []
for p in people:
res.insert(p[1], p)
return res
cold星辰 博客专家 发布了307 篇原创文章 · 获赞 161 · 访问量 49万+ 关注