码迷,mamicode.com
首页 > 其他好文 > 详细

699. Falling Squares

时间:2018-12-01 20:13:02      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:most   air   init   where   ping   lin   currently   tar   Plan   

On an infinite number line (x-axis), we drop given squares in the order they are given.

The i-th square dropped (positions[i] = (left, side_length)) is a square with the left-most point being positions[i][0] and sidelength positions[i][1].

The square is dropped with the bottom edge parallel to the number line, and from a higher height than all currently landed squares. We wait for each square to stick before dropping the next.

The squares are infinitely sticky on their bottom edge, and will remain fixed to any positive length surface they touch (either the number line or another square). Squares dropped adjacent to each other will not stick together prematurely.

 

Return a list ans of heights. Each height ans[i] represents the current highest height of any square we have dropped, after dropping squares represented by positions[0], positions[1], ..., positions[i].

Example 1:

Input: [[1, 2], [2, 3], [6, 1]]
Output: [2, 5, 5]
Explanation:

After the first drop of positions[0] = [1, 2]: _aa _aa ------- The maximum height of any square is 2.

After the second drop of positions[1] = [2, 3]: __aaa __aaa __aaa _aa__ _aa__ -------------- The maximum height of any square is 5. The larger square stays on top of the smaller square despite where its center of gravity is, because squares are infinitely sticky on their bottom edge.

After the third drop of positions[1] = [6, 1]: __aaa __aaa __aaa _aa _aa___a -------------- The maximum height of any square is still 5. Thus, we return an answer of [2, 5, 5].

 

 

Example 2:

Input: [[100, 100], [200, 100]]
Output: [100, 100]
Explanation: Adjacent squares don‘t get stuck prematurely - only their bottom edge can stick to surfaces.

 

Note:

  • 1 <= positions.length <= 1000.
  • 1 <= positions[i][0] <= 10^8.
  • 1 <= positions[i][1] <= 10^6.

 

Approach #1: C++. [Brute Force]

class Solution {
public:
    vector<int> fallingSquares(vector<pair<int, int>>& positions) {
        vector<int> ans;
        vector<Interval> intervals;
        int maxHeight = INT_MIN;
        for (const auto& it : positions) {
            int start = it.first;
            int end = start + it.second;
            int baseHeight = 0;
            for (const auto& it : intervals) {
                if (start >= it.end || end <= it.start) {
                    continue;
                }
                baseHeight = max(baseHeight, it.height);
            }
            int height = it.second + baseHeight;
            maxHeight = max(maxHeight, height);
            intervals.push_back(Interval(start, end, height));
            ans.push_back(maxHeight);
        }
        return ans;
    }
    
private:
    struct Interval {
        int start;
        int end;
        int height;
        Interval(int start, int end, int height)
            : start(start), end(end), height(height) {}
    };
};

  

Approach #2: Java.

 

699. Falling Squares

标签:most   air   init   where   ping   lin   currently   tar   Plan   

原文地址:https://www.cnblogs.com/ruruozhenhao/p/10050490.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!