我是靠谱客的博主 感性康乃馨,最近开发中收集的这篇文章主要介绍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.

本题题意很简单,就是在一个一维的坐标轴上,依次从高处扔箱子,求箱子的最大的高度,直接暴力遍历即可

就是每当落入一个方块的时候,直接遍历求解最高的高度,
在求解最高高度的时候,就是寻找公共区间来判断最高高度,这个就很简单了

代码如下:

#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <string>
#include <climits>
#include <algorithm>
#include <sstream>
#include <functional>
#include <bitset>
#include <numeric>
#include <cmath>
#include <regex>
using namespace std;
class Solution
{
public:
vector<int> fallingSquares(vector<pair<int, int>>& pos)
{
vector<int> res;
vector<vector<int>> all;
int h = 0;
for (auto p : pos)
{
vector<int> one = { p.first,p.first + p.second - 1,p.second };
int tmp = getHeight(all,one);
h = max(h, tmp);
res.push_back(h);
}
return res;
}
int getHeight(vector<vector<int>>& all, vector<int>& one)
{
int left = one[0], right = one[1];
int maxHeight = 0;
for (auto i : all)
{
if (left > i[1] || right < i[0])
continue;
maxHeight = max(maxHeight, i[2]);
}
one[2] += maxHeight;
all.push_back(one);
return one[2];
}
};

最后

以上就是感性康乃馨为你收集整理的leetcode 699. Falling Squares 俄罗斯方块的最高高度 + 暴力遍历即可的全部内容,希望文章能够帮你解决leetcode 699. Falling Squares 俄罗斯方块的最高高度 + 暴力遍历即可所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部