Leetcode刷题笔记 452. 用最少数量的箭引爆气球

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

时间:2020年11月23日
知识点:贪心
题目链接:https://leetcode-cn.com/problems/minimum-number-of-arrows-to-burst-balloons/

题目
在二维空间中有许多球形的气球。对于每个气球,提供的输入是水平方向上,气球直径的开始和结束坐标。由于它是水平的,所以纵坐标并不重要,因此只要知道开始和结束的横坐标就足够了。开始坐标总是小于结束坐标。

一支弓箭可以沿着 x 轴从不同点完全垂直地射出。在坐标 x 处射出一支箭,若有一个气球的直径的开始和结束坐标为 xstart,xend, 且满足 xstart ≤ x ≤ xend,则该气球会被引爆。可以射出的弓箭的数量没有限制。 弓箭一旦被射出之后,可以无限地前进。我们想找到使得所有气球全部被引爆,所需的弓箭的最小数量。

给你一个数组 points ,其中 points [i] = [xstart,xend] ,返回引爆所有气球所必须射出的最小弓箭数。

示例 1
输入:points = [[10,16],[2,8],[1,6],[7,12]]
输出:2
解释
对于该样例,x = 6 可以射爆 [2,8],[1,6] 两个气球,以及 x = 11 射爆另外两个气球

示例 2
输入:points = [[1,2],[3,4],[5,6],[7,8]]
输出:4

示例 3
输入:points = [[1,2],[2,3],[3,4],[4,5]]
输出:2

示例 4
输入:points = [[1,2]]
输出:1

示例 5
输入:points = [[2,3],[2,3]]
输出:1

提示

  • 0 <= points.length <= 104
  • points[i].length == 2
  • -231 <= xstart < xend <= 231 - 1

解法

  1. 一看就是贪心的题目
  2. 画个图就知道 按照坐标的第二个点进行从小到大排序
  3. 如果不行了 更新 也就是箭+1

代码

#include <stdio.h>
#include <iostream>
#include <vector>
using namespace std;
bool cmp(vector<int> x,vector<int> y){
    return x[1] < y[1];
}
class Solution {
public:
    int findMinArrowShots(vector<vector<int>>& points) {
        if(points.size()==0)
            return  0;
        sort(points.begin(), points.end(), cmp);
        int ans = 1;
        int maxx = points[0][1];
        for(int i = 1;i < points.size();i++){
            if(points[i][0] > maxx){
                ans++;
                maxx = points[i][1];
            }
        }
        return ans;
    }
};
int main()
{
    vector<int> point1{9,12};vector<int> point2{1,10};
    vector<int> point3{4,11};vector<int> point4{8,12};
    vector<int> point5{3,9};vector<int> point6{6,7};
    vector<int> point7{6,9};
    vector<vector<int>> points;
    points.push_back(point1);points.push_back(point2);
    points.push_back(point3);points.push_back(point4);
    points.push_back(point5);points.push_back(point6);points.push_back(point7);
    Solution s;
    cout<<s.findMinArrowShots(points)<<endl;
    return 0;
}

今天也是爱zz的一天哦!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值