美文网首页程序员
力扣 452 用最少数量的箭引爆气球

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

作者: zhaojinhui | 来源:发表于2020-11-18 02:09 被阅读0次

题意:给定一组气球浮动的坐标范围,找出做少的箭来射穿所有气球

思路:

  1. 把气球安x[0]从小到大排序
  2. 然后遍历数组,每次当左边界小于当前右边界,那么更新右边界,continue
  3. 否则,arrow+1,更新右边界

思想:字符规律

复杂度:时间O(nlgn),空间O(1)

class Solution {
    public int findMinArrowShots(int[][] points) {
        if (points.length == 0) {
            return 0;
        }
        Arrays.sort(points, new Comparator<int[]> () {
            public int compare(int[] o1, int[] o2) {
                return o1[1] >= o2[1] ? 1 : -1;
            }
        });
        int arrows = 1;
        int right = points[0][1];
        
        for (int[] index : points) {
            if (index[0] <= right) {
                right = Math.min(right, index[1]);
                continue;
            }
            arrows++;
            right = index[1];
        }
        return arrows;
    }
}

相关文章

网友评论

    本文标题:力扣 452 用最少数量的箭引爆气球

    本文链接:https://www.haomeiwen.com/subject/jtetiktx.html