zoukankan      html  css  js  c++  java
  • 【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.

    解题思路:positions.length最大是1000,因此解题算法的时间复杂度应该允许在O(n^2)。O(n^2)的解法也很简单直接,遍历positions,把positions[i]与positions[0]~positions[i-1]之前的所有元素比较检查是否有相交,如果与positions[j]相交,那么positions[i]的高度就是positions[j]的高度加上positions[i]自身的高度。

    代码如下:

    class Solution(object):
        def fallingSquares(self, positions):
            """
            :type positions: List[List[int]]
            :rtype: List[int]
            """
            history = []
            res = []
            altitude = []
            for i, (pos,length) in enumerate(positions):
                altitude.append(length)
                for j,(hisPos,hisLength) in enumerate(history):
                    if (pos + length <= hisPos or hisPos + hisLength <= pos) == False:
                        altitude[-1] = max(altitude[-1],length+altitude[j])
                if len(res) == 0:
                    res.append(altitude[-1])
                else:
                    res.append(max(res[-1],altitude[-1]))
                history.append([pos,length])
            return res
  • 相关阅读:
    一些算法思路整理
    (递归描述)根据上排给出十个数,在其下排填出对应的十个数
    在二元树中找出和为某一值的所有路径(树)--最容易理解的版本?
    动态规划求解连续子数组最大和问题(应该是新的描述方法?)
    ubuntu/linux 下 git 通过代理下载数据 (最简单的方式)
    3. Longest Substring Without Repeating Characters(c++) 15ms
    1.Two Sum(c++)(附6ms O(n) accepted 思路和代码)
    3篇NeuroImage文献分析
    PCA、ZCA白化
    mysql创建全文索引
  • 原文地址:https://www.cnblogs.com/seyjs/p/10743973.html
Copyright © 2011-2022 走看看