zoukankan      html  css  js  c++  java
  • Leetcode: 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 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:
    2
    
    Explanation:
    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).

    我的Greedy+Heap做法:

    Array按start moment升序sort,Heap里按end moment升序sort,一旦到Heap里结束时间最早的气球的end,就要扔arrow,这时在heap里的气球都会被引爆

     1 public class Solution {
     2     public int findMinArrowShots(int[][] points) {
     3         if (points==null || points.length==0 || points[0].length==0) return 0;
     4         if (points[0][0]==Integer.MIN_VALUE && points[0][1]==Integer.MAX_VALUE) return 1;
     5         int res = 0;
     6         Arrays.sort(points, new Comparator<int[]>() {
     7             public int compare(int[] a1, int[] a2) {
     8                 return a1[0]!=a2[0]? a1[0]-a2[0] : a1[1]-a2[1];
     9             }
    10         });
    11         PriorityQueue<int[]> queue = new PriorityQueue<int[]>(1, new Comparator<int[]>() {
    12             public int compare(int[] a1, int[] a2) {
    13                 return a1[1]-a2[1];
    14             }
    15         });
    16         
    17         for (int[] point : points) {
    18             if (queue.isEmpty() || point[0] <= queue.peek()[1]) {
    19                 queue.offer(point);
    20             }
    21             else if (point[0] > queue.peek()[1]) {
    22                 res++;
    23                 queue.clear();
    24                 queue.offer(point);
    25             }
    26         }
    27         if (!queue.isEmpty()) res++;
    28         return res;
    29     }
    30 }

    改进:因为一旦气球爆了的话,Heap里面的元素要全部清空,不需要知道Heap里面次小值是什么,所以其实不需要Heap, 维护一个最小值即可

     1 public int findMinArrowShots(int[][] points) {
     2     if(points==null || points.length==0 || points[0].length==0) return 0;
     3     Arrays.sort(points, new Comparator<int[]>() {
     4         public int compare(int[] a, int[] b) {
     5             if(a[0]==b[0]) return a[1]-b[1];
     6             else return a[0]-b[0];
     7         }
     8     });
     9     
    10     int minArrows = 1;
    11     int arrowLimit = points[0][1];
    12     for(int i=1;i<points.length;i++) {
    13         int[] baloon = points[i];
    14         if(baloon[0]<=arrowLimit) {
    15             arrowLimit=Math.min(arrowLimit, baloon[1]);
    16         } else {
    17             minArrows++;
    18             arrowLimit=baloon[1];
    19         }
    20     }
    21     return minArrows;
    22 }
  • 相关阅读:
    Mariadb Galera Cluster 群集 安装部署
    RabbitMQ Cluster群集安装配置
    Glance 镜像服务群集
    Nova控制节点集群
    openstack集群环境准备
    http高可用+负载均衡 corosync + pacemaker + pcs
    cinder块存储控制节点
    cinder块存储 后端采用lvm、nfs安装配置
    web管理kvm ,安装webvirtmgr
    kvm虚拟机管理 系统自动化安装
  • 原文地址:https://www.cnblogs.com/EdwardLiu/p/6143489.html
Copyright © 2011-2022 走看看