【面试经典150 | 区间】用最少数量的箭引爆气球

文章目录

Tag

【合并区间】【排序】【数组】


题目来源

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


题目解读

每个气球都有一个占据x轴的一个范围,在这个范围里射出一只箭就会引爆该气球,现在有一堆排布好的气球,试问引爆所有的气球至少需要多少支箭。


解题思路

方法一:合并区间

气球都是以区间的形式给出的,那么我们将有交集的区间进行合并,然后剩下的区间每个区间都需要一只箭来引爆q

实现代码

cpp 复制代码
class Solution {
public:
    int findMinArrowShots(vector<vector<int>>& points) {
        int res = 1;
        sort(points.begin(), points.end());
        int r = points[0][1];
        for (int i = 1; i < points.size(); ++i) {
            if (points[i][0] > r) {
                ++res;
            }
            else {
                points[i][0] = max(points[i-1][0], points[i][0]);
                points[i][1] = min(points[i-1][1], points[i][1]);
            }
            r = points[i][1];
        }
        return res;
    }
};

复杂度分析

时间复杂度: O ( n l o g n ) O(nlogn) O(nlogn), n n n 为数组 points 的长度。

空间复杂度: O ( n l o g n ) O(nlogn) O(nlogn),额外的空间是排序占据的空间。


其他语言

python3

合并区间

python3 复制代码
class Solution:
    def findMinArrowShots(self, points: List[List[int]]) -> int:
        points.sort()

        r = points[0][1]
        n = len(points)
        res = 1
        for i in range(1, n):
            if points[i][0] > r:
                res += 1
            else:
                points[i][0] = max(points[i-1][0], points[i][0])
                points[i][1] = min(points[i-1][1], points[i][1])
            r = points[i][1]
        return res

写在最后

如果文章内容有任何错误或者您对文章有任何疑问,欢迎私信博主或者在评论区指出 💬💬💬。

如果大家有更优的时间、空间复杂度方法,欢迎评论区交流。

最后,感谢您的阅读,如果感到有所收获的话可以给博主点一个 👍 哦。

相关推荐
m0_675988234 天前
Leetcode40: 组合总和 II
算法·leetcode·回溯·排序·python3
c++初学者ABC5 天前
【例51.3】 平移数据
c++·数组
Tisfy10 天前
LeetCode 2239.找到最接近 0 的数字:遍历
算法·leetcode·题解·数组·遍历
DogDaoDao10 天前
leetcode 面试经典 150 题:合并区间
c++·算法·leetcode·面试·vector·引用·合并区间
A懿轩A17 天前
C/C++ 数据结构与算法【排序】 常见7大排序详细解析【日常学习,考研必备】带图+详细代码
c语言·c++·学习·排序算法·排序
金创想20 天前
排序的本质、数据类型及算法选择
排序
AQin101221 天前
【Leetcode·中等·数组】59. 螺旋矩阵 II(spiral matrix ii)
算法·leetcode·矩阵·数组
WeeJot嵌入式25 天前
C语言----数组
c语言·数组
Amd7941 个月前
特殊数据类型的深度分析:JSON、数组和 HSTORE 的实用价值
postgresql·json·数据存储·数据类型·数组·日期和时间·hstore
DogDaoDao1 个月前
leetcode 面试经典 150 题:删除有序数组中的重复项
算法·leetcode·面试·数组·双指针·数据结构与算法·重复数组