由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - leetcode的container with most water题
相关主题
leetcode一道题[合集] Google电话面试题目
leetcode container with most watera problem from leetcode: high efficiency algorithm for combinations problem
求OJ container with most water O(n)解法Careercup question.
一道题:Vertical Sticks问一道NP算法题
发觉最近流行这些X坐标扫描的题借人气,问道题
leetcode一题请教大家一道Google的题目
Leetcode上subsets-ii的疑问请问一道面试题
Google电话面试题目G的电面题,是什么意思啊?
相关话题的讨论汇总
话题: container话题: water话题: most话题: vertical话题: block
进入JobHunting版参与讨论
1 (共1页)
m********a
发帖数: 128
1
难道我理解不正确?难道中间更高的vertical line不block两边比较低的vertical
line 形成water container?
比如[1 2 1], 如果block结果是1,否则就是2。
Given n non-negative integers a1, a2, ..., an, where each represents a point
at coordinate (i, ai). n vertical lines are drawn such that the two
endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together
with x-axis forms a container, such that the container contains the most
water.
v****a
发帖数: 236
2
Find two lines, which together
: with x-axis forms a container, such that the container contains the most
不block, 只找到两个边界就行了。。就是真的水桶,桶里有一片板子也不影响容积吧.
如果考虑block情况,难道不就是检查每一个单位格子的最小高度么。。
point
together
m********a
发帖数: 128
3
嗯,如果block的话会比较简单,
如果不block的话,那个optimal的greedy 算法怎么证明是最优的啊?

吧.

【在 v****a 的大作中提到】
: Find two lines, which together
: : with x-axis forms a container, such that the container contains the most
: 不block, 只找到两个边界就行了。。就是真的水桶,桶里有一片板子也不影响容积吧.
: 如果考虑block情况,难道不就是检查每一个单位格子的最小高度么。。
: point
: together

c******0
发帖数: 59
4
这个题的理解是:
min(a[i],a[j])*(j-i)
但是 (j-i) is maximum at two ends, 所以只需要update min(a[i],a[j])
1 (共1页)
进入JobHunting版参与讨论
相关主题
G的电面题,是什么意思啊?发觉最近流行这些X坐标扫描的题
请教一个Axis-Aligned Rectangles的算法leetcode一题
求overlap的rectagalesLeetcode上subsets-ii的疑问
找最近的点,这题咋解?Google电话面试题目
leetcode一道题[合集] Google电话面试题目
leetcode container with most watera problem from leetcode: high efficiency algorithm for combinations problem
求OJ container with most water O(n)解法Careercup question.
一道题:Vertical Sticks问一道NP算法题
相关话题的讨论汇总
话题: container话题: water话题: most话题: vertical话题: block