본문 바로가기

LEETCODE

#11. Container With Most Water [Two Ptr]

You are given an integer array height of length n. There are n vertical lines drawn such that the two endpoints of the ith line are (i, 0) and (i, height[i]). Find two lines that together with the x-axis form a container, such that the container contains the most water. Return the maximum amount of water a container can store.

Example 1:
Input: height = [1,8,6,2,5,4,8,3,7]
Output: 49
Explanation: The above vertical lines are represented by array [1,8,6,2,5,4,8,3,7]. In this case, the max area of water (blue section) the container can contain is 49.

 

Example 2:
Input: height = [1,1]
Output: 1

class Solution:
    def maxArea(self, height: List[int]) -> int:
        L,R = 0, len(height)-1
        res = 0
        while L < R:
            area = (R-L) * min(height[L],height[R])
            res = max(res,area)
            if height[L] < height[R]:
                L+=1
            else:
                R-=1
        return res

https://leetcode.com/problems/container-with-most-water/submissions/?envType=featured-list&envId=top-interview-questions?envType=featured-list&envId=top-interview-questions

'LEETCODE' 카테고리의 다른 글

#19. Remove Nth Node From End of List  (0) 2023.10.13
#15. 3Sum  (0) 2023.10.12
#7. Reverse Integer  (0) 2023.10.10
#5. Longest Palindromic Substring (even/odd ptrs)  (0) 2023.10.10
# 17. Letter Combinations of a Phone Number [BACKTRACK, DFS]  (0) 2023.10.08