LeetCode 第11題解答(python)

2021-09-16 14:12:28 字數 892 閱讀 4011

leetcode 第11題,盛最多的水,題目描述如下:

給定 n 個非負整數 a1,a2,...,an,每個數代表座標中的乙個點 (i, ai) 。在座標內畫 n 條垂直線,垂直線 i 的兩個端點分別為 (i, ai) 和 (i, 0)。找出其中的兩條線,使得它們與 x 軸共同構成的容器可以容納最多的水。

說明:你不能傾斜容器,且 n 的值至少為 2

圖中垂直線代表輸入陣列 [1,8,6,2,5,4,8,3,7]。在此情況下,容器能夠容納水(表示為藍色部分)的最大值為 49。

本題的思路是參考leetcode官方解答。

利用雙指標,在陣列的兩端插入。我們用

class solution(object):

def maxarea(self, height):

""":type height: list[int]

:rtype: int

"""maxarea = 0

l =0

r = len(height)-1

#print(r)

while (l

maxarea = max(maxarea, min(height[l], height[r])*(r-l))

if (height[l] < height[r]):

l+=1

else:

r-=1

print(maxarea)

return maxarea

#obj = solution()

#obj.maxarea([1,8,6,2,5,4,8,3,7])

LeetCode演算法題解答

leetcode演算法題解答 第四題 尋找兩個有序陣列的中位數 給定兩個大小為 m 和 n 的有序陣列 nums1 和 nums2。請你找出這兩個有序陣列的中位數,並且要求演算法的時間複雜度為 o log m n 你可以假設 nums1 和 nums2 不會同時為空。def findmedianso...

Accelerated C 習題解答 第1章

ex.1 01 include include includeint main std cout std string name std cin name std cout include include includeint main std cout std string name std ci...

Accelerated C 習題解答 第3章

部分習題參考了網上已有的解答 ex.3 0 include include include include include include includeusing std cin using std cout using std endl using std string using std ve...