2019年11月1日 星期五

Minimum Number of Arrows to Burst Balloons


Minimum Number of Arrows to Burst Balloons

  • Lintcode : 1232 / Leetcode : 452
  • Level : Medium

Problem

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 10^4 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
Example1

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).
Example2

Input:
[[1,2],[3,4],[5,6],[7,8]]
Output:
4

Concept & Algorithm

Time Complexity & Space Complexity

time : O(n)
space: O(n)

Answer

class Solution {
public:
    int findMinArrowShots(vector<vector<int>> &points) {
        if (points.size() == 0 || points[0].size() == 0) return 0;
        sort(points.begin(), points.end());
        vector<int> dp(points.size());
        dp[0] = 1;
        for (int i = 1; i < points.size(); i++) {
            if (points[i][0] <= points[i - 1][1]) {
                dp[i] = dp[i - 1];
                points[i][1] = min(points[i][1], points[i - 1][1]);
            }else {
                dp[i] = dp[i - 1] + 1;
            }
        }
        return dp[points.size() - 1];
    }
};
tags: DP

沒有留言:

張貼留言

Last Position of Target

Last Position of Target Lintcode : 458 / Leetcode : 34 Level : Easy Problem Find the last position of a target number in a sorted ...