452. Minimum Number of Arrows to Burst Balloons

题目如下:

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 104balloons.

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.

我的提交:

//17.3.28
//贪心
import java.util.Arrays;
public class Solution {
    public int findMinArrowShots(int[][] points) {
        if(points.length==0)
            return 0;
        Arrays.sort(points,new Comparator<int[]>(){
            @Override
            public int compare(int[] a,int[] b){
                return a[1]-b[1];
            }
        });
        int count = 1;
        int min = points[0][1];
        for(int i=1;i<points.length;i++){
            if(points[i][0]>min){
                count++;
                min = points[i][1];
            }
        }
        return count;
    }
}

要想清楚为什么可以使用贪心!

排序部分:

 Arrays.sort(points,new Comparator<int[]>(){
            @Override
            public int compare(int[] a,int[] b){
                return a[1]-b[1];
            }
//排序前:
//int[][] a = {{10,16},{2,8},{1,6},{7,12},{8,9}};
//排序后:
//(1,6)(2,8)(8,9)(7,12)(10,16)

排序部分的其他写法:

Arrays.sort(points, (a,b)->{return a[1]-b[1];});
Arrays.sort(points, Comparator.comparing(a->a[1]));
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 文/月中山 故乡的歌是一支清远的笛总在有月亮的晚上响起故乡的面貌却是一种模糊的怅惘仿佛雾里的挥手别离离别后乡愁是一...
    月中山阅读 613评论 0 7
  • 《这个夜晚》 作者:云烟 这个夜晚我们准备了香香的归程 一块手帕包着星星还有月亮 我若无其事地哼唱一首老歌 你穿越...
    当代诗人云烟阅读 256评论 6 9