Container With Most Water

  Total Accepted: 2685  Total Submissions: 9008 My Submissions

 

Given n non-negative integers a1a2, ..., an, where each represents a point at coordinate (iai). n vertical lines are drawn such that the two endpoints of line i is at (iai) and (i, 0). Find two lines, which together with x-axis forms a container, such that the container contains the most water.

Note: You may not slant the container.

 

 

This problem is different from largest rectangle in histogram. It's just a line instead of a histogram. So there is no water. 

 

class Solution {
 public:
  int maxArea(vector<int> &height) {
    int size = height.size(), l = 0, r = size - 1, res = 0;
    if (size == 0)
      return 0;
    while (l < r) {
      if (res < (r - l)*min(height[l],height[r]))
        res = (r - l)*min(height[l],height[r]);
      if (height[l] <= height[r])
        ++l;
      else
        --r;
    } 
    return res;
  }
};


 

 

相关文章:

  • 2022-03-03
  • 2021-06-10
  • 2021-09-01
  • 2021-08-22
  • 2022-12-23
猜你喜欢
  • 2021-08-03
  • 2021-09-06
  • 2022-02-28
  • 2021-11-21
  • 2022-01-06
  • 2021-10-23
相关资源
相似解决方案