11. 盛最多水的容器 Container With Most Water

喜欢ヅ旅行 2022-05-28 00:46 212阅读 0赞

中文题目:

给定 n 个正整数 a1,a2,…,an,其中每个点的坐标用(i, ai)表示。 画 n 条直线,使得线 i 的两个端点处于(i,ai)和(i,0)处。请找出其中的两条直线,使得他们与 X 轴形成的容器能够装最多的水。

注意:你不能倾斜容器,n 至少是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.

Note: You may not slant the container and n is at least 2.

解题思路:

使用贪心算法
 1.首先假设我们找到能取最大容积的纵线为 i, j (假定i < j),那么得到的最大容积 C = min( ai , aj ) * ( j- i) ;
2.下面我们看这么一条性质:
  ①: 在 j 的右端没有一条线会比它高!假设存在 k |( j < k && ak > aj) ,那么 由 ak > aj,所以 min(ai, aj, ak) =min(ai, aj) ,所以由i, k构成的容器的容积C’ = min(ai, aj) * (k - i) > C,与C是最值矛盾,所以得证j的后边不会有比它还高的线;
  ②:同理,在i的左边也不会有比它高的线;这说明什么呢?如果我们目前得到的候选: 设为 x, y两条线(x< y),那么能够得到比它更大容积的新的两条边必然在[x, y]区间内并且 ax’ >= ax , ay’ >= ay;
3.所以我们从两头向中间靠拢,同时更新候选值;在收缩区间的时候优先从x, y中较小的边开始收缩;

java版代码:

  1. public class Solution {
  2. public int maxArea(int[] height) {
  3. // 参数校验
  4. if (height == null || height.length < 2) {
  5. return 0;
  6. }
  7. // 记录最大的结果
  8. int result = 0;
  9. // 左边的竖线
  10. int left = 0;
  11. // 右边的竖线
  12. int right = height.length - 1;
  13. while (left < right) {
  14. // 设算当前的最大值
  15. result = Math.max(result, Math.min(height[left], height[right]) * (right - left));
  16. // 如果右边线高
  17. if (height[left] < height[right]) {
  18. int k = left;
  19. // 从[left, right - 1]中,从左向右找,找第一个高度比height[left]高的位置
  20. while (k < right && height[k] <= height[left]) {
  21. k++;
  22. }
  23. // 从[left, right - 1]中,记录第一个比原来height[left]高的位置
  24. left = k;
  25. }
  26. // 左边的线高
  27. else {
  28. int k = right;
  29. // 从[left + 1, right]中,从右向左找,找第一个高度比height[right]高的位置
  30. while (k > left && height[k] <= height[right]) {
  31. k--;
  32. }
  33. // 从[left, right - 1]中,记录第一个比原来height[right]高的位置
  34. right = k;
  35. }
  36. }
  37. return result;
  38. }
  39. }

c++版代码:

  1. class Solution {
  2. public:
  3. int maxArea(vector<int>& height) {
  4. int n=height.size();
  5. int i=0,j=n-1;
  6. int max=0;
  7. while(i!=j){
  8. if(height[i]<height[j]){
  9. int valid_height=height[i];
  10. int temp_area=valid_height*(j-i);
  11. max=max>temp_area?max:temp_area;
  12. i++;
  13. }
  14. else{
  15. int valid_height=height[j];
  16. int temp_area=valid_height*(j-i);
  17. max=max>temp_area?max:temp_area;
  18. j--;
  19. }
  20. }
  21. return max;
  22. }
  23. };

发表评论

表情:
评论列表 (有 0 条评论,212人围观)

还没有评论,来说两句吧...

相关阅读