码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 406. Queue Reconstruction by Height

时间:2018-11-10 10:42:37      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:ret   nbsp   身高   insert   str   cto   first   return   pair   

先根据身高排序,高的在前。然后对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

标签:ret   nbsp   身高   insert   str   cto   first   return   pair   

原文地址:https://www.cnblogs.com/hankunyan/p/9938252.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!