zoukankan      html  css  js  c++  java
  • leetcode 406. Queue Reconstruction by Height

    Suppose you have a random list of people standing in a queue. Each person is described by a pair of integers (h, k), where h is the height of the person and k is the number of people in front of this person who have a height greater than or equal to h. Write an algorithm to reconstruct the queue.

    Note:
    The number of people is less than 1,100.

    Example
    
    Input:
    [[7,0], [4,4], [7,1], [5,0], [6,1], [5,2]]
    
    Output:
    [[5,0], [7,0], [5,2], [6,1], [4,4], [7,1]]
    

    题目大意:给定输入序列对,重新排列,使得对于第i个对[h,k]他前面有k个大于等于h的对。

    思路:先按照h从大到小w从小到大排序,这样能保证最少的修改次数,即只用把当前的对,放到对应的位置就行了。

    class Solution {
    public:
        vector<pair<int, int>> reconstructQueue(vector<pair<int, int>>& people) {
            sort(people.begin(), people.end(), [](pair<int,int> a, pair<int,int>b){
                if (a.first == b.first) return a.second < b.second;
                return a.first > b.first;
            });
            vector<pair<int,int> > ans;
            for (int i = 0; i < people.size(); ++i) {
                if (people[i].second < i) {
                    ans.insert(ans.begin()+people[i].second, people[i]);
                }
                else ans.push_back(people[i]);
            }
            return ans;
        }
    };
    
  • 相关阅读:
    websocket介绍
    阿里支付接口
    王爽 汇编 检测点 14.2
    如何用汇编写出一个心形图像
    王爽 汇编 实验12
    王爽 汇编 实验11
    王爽 汇编 实验10
    王爽汇编 检测点10.5
    二元选择排序
    螺旋矩阵
  • 原文地址:https://www.cnblogs.com/pk28/p/9569710.html
Copyright © 2011-2022 走看看