[leetcode] 452. Minimum Number of Arrows to Burst Balloons

网友投稿 314 2022-08-27

[leetcode] 452. Minimum Number of Arrows to Burst Balloons

Description

There are a number of spherical balloons spread in two-dimensional space. For each balloon, provided input is the start and end coordinates of the horizontal diameter. Since it’s horizontal, y-coordinates don’t matter and hence the x-coordinates of start and end of the diameter suffice. Start is always smaller than end. There will be at most 104 balloons.

An arrow can be shot up exactly vertically from different points along the x-axis. A balloon with xstart and xend bursts by an arrow shot at x if xstart ≤ x ≤ xend. There is no limit to the number of arrows that can be shot. An arrow once shot keeps travelling up infinitely. The problem is to find the minimum number of arrows that must be shot to burst all balloons.

Example:

Input:[[10,16], [2,8], [1,6], [7,12]]Output:2Explanation:One way is to shoot one arrow for example at x = 6 (bursting the balloons [2,8] and [1,6]) and another arrow at x = 11 (bursting the other two balloons).

分析

题目的意思是:这道题给了我们一堆大小不等的气球,用区间范围来表示气球的大小,可能会有重叠区间。现在求用最少数量的箭引爆气球。

这道题是典型的用贪婪算法来做的题,因为局部最优解就等于全局最优解.把重叠区域都合并,然后计算个数就是结果了。

代码

class Solution {public: int findMinArrowShots(vector>& points) { if(points.empty()) return 0; sort(points.begin(),points.end()); int res=1; int end=points[0].second; for(int i=1;i

参考文献

​​[LeetCode] Minimum Number of Arrows to Burst Balloons 最少数量的箭引爆气球​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:SaaS营销:14个关键的销售资格问题,确定正确的潜在客户!(saas销售需要了解的知识)
下一篇:[leetcode] 720. Longest Word in Dictionary
相关文章

 发表评论

暂时没有评论,来抢沙发吧~