[Leetcode] 699. Falling Squares 解题报告

题目

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.

    思路

    有点类似于“城市天际线”那道题目,没怎么看懂网上参考题目的复杂逻辑,后面再补充具体解释吧。。。

    代码

    class Solution {
    public:
        vector<int> fallingSquares(vector<pair<int, int>>& positions) {
            map<pair<int,int>, int> mp;
            mp[{0,1000000000}] = 0;                 // the initialization
            vector<int> ans;
            int mx = 0;
            for (auto &v : positions) {
                vector<vector<int>> toAdd;
                int len = v.second;
                int a = v.first, b = v.first + v.second, h = 0;
                auto it = mp.upper_bound({a,a});    // the first ont that is larger than a
                if (it != mp.begin() && (--it)->first.second <= a) {
                    ++it;
                }
                while (it != mp.end() && it->first.first < b) {
                    if (it->first.first < a) {
                        toAdd.push_back({it->first.first, a, it->second});
                    }
                    if (it->first.second > b) {
                        toAdd.push_back({b, it->first.second, it->second});
                    }
                    h = max(h, it->second);
                    it = mp.erase(it);
                }
                mp[{a, b}] = h + len;
                for (auto &t : toAdd) {
                    mp[{t[0], t[1]}] = t[2];
                }
                mx = max(mx, h + len);
                ans.push_back(mx);
            }
            return ans;
        }
    };
    

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值