当前位置:   article > 正文

452. 用最少数量的箭引爆气球_射气球c++ 右端点排序

射气球c++ 右端点排序

原题链接:452. 用最少数量的箭引爆气球

 

solution:
        贪心策略:将所有区间按右端点从小到大进行排序,每次选择区间的右端点进行射击。

 

  1. class Solution {
  2. public:
  3. int findMinArrowShots(vector<vector<int>>& points) {
  4. int n = points.size();
  5. sort(points.begin(),points.end(),[](const vector<int> &a, const vector<int> &b){
  6. return a[1] < b[1];
  7. });
  8. int res = 1,ed = points[0][1];
  9. for(int i = 1;i < n;i++) {
  10. if(points[i][0] > ed) {
  11. res++;
  12. ed = points[i][1];
  13. }
  14. }
  15. return res;
  16. }
  17. };

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/491573
推荐阅读
相关标签
  

闽ICP备14008679号