LeetCode 406. Queue Reconstruction by Height

Posted 約束の空

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 406. Queue Reconstruction by Height相关的知识,希望对你有一定的参考价值。

先根据身高排序,高的在前。然后对people进行遍历(从高到矮放入队伍),对于当前的人来说,比他高的人都已经排好队了,因此只要根据k插入队伍即可。

代码非常简洁。

class Solution {
public:
    vector<pair<int, int>> reconstructQueue(vector<pair<int, int>>& people) {
        sort(people.begin(), people.end(), [](const pair<int,int> &a, const pair<int,int> &b){
            if (a.first==b.first) return a.second<b.second;
            return a.first>b.first;
        });
        vector<pair<int,int>> res;
        for (auto x:people)
            res.insert(res.begin()+x.second, x);
        return res;
    }
};

 

以上是关于LeetCode 406. Queue Reconstruction by Height的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode] 406.Queue Reconstruction by Height

[LeetCode] 406. Queue Reconstruction by Height(按身高重排队列)

LeetCode 406.Queue Reconstruction by Height

LeetCode 406. Queue Reconstruction by Height

LeetCode 406. Queue Reconstruction by Height

leetcode 406. Queue Reconstruction by Height 根据身高重建队列(中等)