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

Leetcode 452. 用最少数量的箭引爆气球

时间:2018-07-19 13:43:13      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:amp   ret   vector   color   pair   div   fir   nts   ons   

class Solution {
public:
    int findMinArrowShots(vector<pair<int, int>>& points) {
        if(points.size()==0)
            return 0;
        
        sort(points.begin(), points.end(), [](const auto a, const auto b){
                                                                            return a.first < b.first;
                                                                         });
        int short_num = 1;
        int short_beg = points[0].first;
        int short_end = points[0].second;
        for(int i=1; i<points.size(); ++i)
        {
            if(points[i].first <= short_end)
            {
                short_beg = points[i].first;
                if(short_end > points[i].second)
                    short_end = points[i].second;
            }
            else
            {
                ++short_num;
                short_beg = points[i].first;
                short_end = points[i].second;
            }
        }
        return short_num;
    }
};

 

Leetcode 452. 用最少数量的箭引爆气球

标签:amp   ret   vector   color   pair   div   fir   nts   ons   

原文地址:https://www.cnblogs.com/randyniu/p/9334861.html

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