LeetCode 452 Minimum Number of Arrows to Burst Balloons (贪心,排序)

244 篇文章 0 订阅
34 篇文章 3 订阅

There are some spherical balloons taped onto a flat wall that represents the XY-plane. The balloons are represented as a 2D integer array points where points[i] = [xstart, xend] denotes a balloon whose horizontal diameter stretches between xstart and xend. You do not know the exact y-coordinates of the balloons.

Arrows can be shot up directly vertically (in the positive y-direction) from different points along the x-axis. A balloon with xstart and xend is burst by an arrow shot at x if xstart <= x <= xend. There is no limit to the number of arrows that can be shot. A shot arrow keeps traveling up infinitely, bursting any balloons in its path.

Given the array points, return the minimum number of arrows that must be shot to burst all balloons.

Example 1:

Input: points = [[10,16],[2,8],[1,6],[7,12]]
Output: 2
Explanation: The balloons can be burst by 2 arrows:
- Shoot an arrow at x = 6, bursting the balloons [2,8] and [1,6].
- Shoot an arrow at x = 11, bursting the balloons [10,16] and [7,12].

Example 2:

Input: points = [[1,2],[3,4],[5,6],[7,8]]
Output: 4
Explanation: One arrow needs to be shot for each balloon for a total of 4 arrows.

Example 3:

Input: points = [[1,2],[2,3],[3,4],[4,5]]
Output: 2
Explanation: The balloons can be burst by 2 arrows:
- Shoot an arrow at x = 2, bursting the balloons [1,2] and [2,3].
- Shoot an arrow at x = 4, bursting the balloons [3,4] and [4,5].

Constraints:

  • 1 <= points.length <= 10^5
  • points[i].length == 2
  • -2^31 <= xstart < xend <= 2^31 - 1

题目链接:https://leetcode.com/problems/minimum-number-of-arrows-to-burst-balloons/

题目大意:给一些气球在x轴的直径范围,可从x轴任意点沿着y轴方向射箭,射出的箭只会径直向前飞,遇到气球就会戳爆,问戳爆所有气球最少需要射几次箭

题目分析:按照左端点排序,贪心策略很明显:尽可能往覆盖多的地方射击,于是不断维护从当前段开始往后可覆盖的公共范围,若后一段无法被当前覆盖则将后一段作为新的起始段,继续往后计算

68ms,时间击败85.24%

class Solution {
    public int findMinArrowShots(int[][] points) {
        Arrays.sort(points, (p1, p2) -> Integer.compare(p1[0], p2[0]));
        int n = points.length, i = 0, ans = 0;
        // for (int j = 0; j < n; j++) {
        //     System.out.println(points[j][0] + " " + points[j][1]);
        // }
        while (i < n) {
            int l = points[i][0], r = points[i][1], j = i + 1;
            while (j < n && points[j][0] <= r && points[j][0] >= l) {
                r = Math.min(r, points[j][1]);
                l = points[j][0];
                j++;
            }
            i = j;
            ans++;
        }
        return ans;
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值