[LintCode] Container With Most Water 装最多水的容器

本文涉及的产品
容器镜像服务 ACR,镜像仓库100个 不限时长
简介:

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.

 Notice

You may not slant the container.

Example

Given [1,3,2], the max area of the container is 2.

LeetCode上的原题,请参见我之前的博客Container With Most Water

解法一:

class Solution {
public:
    /**
     * @param heights: a vector of integers
     * @return: an integer
     */
    int maxArea(vector<int> &heights) {
        int res = 0, i = 0, j = heights.size() - 1;
        while (i < j) {
            res = max(res, min(heights[i], heights[j]) * (j - i));
            heights[i] < heights[j] ? ++i : --j;
        }
        return res;
    }
};

解法二:

class Solution {
public:
    /**
     * @param heights: a vector of integers
     * @return: an integer
     */
    int maxArea(vector<int> &heights) {
        int res = 0, i = 0, j = heights.size() - 1;
        while (i < j) {
            int h = min(heights[i], heights[j]);
            res = max(res, h * (j - i));
            while (i < j && h == heights[i]) ++i;
            while (i < j && h == heights[j]) --j;
        }
        return res;
    }
};

本文转自博客园Grandyang的博客,原文链接:装最多水的容器[LintCode] Container With Most Water ,如需转载请自行联系原博主。

目录
打赏
0
0
0
0
5351
分享
相关文章
LeetCode刷题---11. 盛最多水的容器(双指针-对撞指针)
LeetCode刷题---11. 盛最多水的容器(双指针-对撞指针)
|
8月前
|
java的图形化界面编程AWT与Swing学习记录与分享(其一container容器)
java的图形化界面编程AWT与Swing学习记录与分享(其一container容器)
123 0
云上应用管理问题之为什么很多业务会采用包年包月 + 按量付费的混合付费方式
云上应用管理问题之为什么很多业务会采用包年包月 + 按量付费的混合付费方式
在k8S中,初始化容器(init container)概念原理是什么?
在k8S中,初始化容器(init container)概念原理是什么?
力扣经典150题解析之二十八:盛最多水的容器
力扣经典150题解析之二十八:盛最多水的容器
68 0
|
8月前
|
11. 盛最多水的容器
11. 盛最多水的容器
43 1
|
7月前
|
11.盛最多水的容器
11.盛最多水的容器
【经典LeetCode算法题目专栏分类】【第1期】左右双指针系列:盛最多水的容器、接雨水、回文子串、三数之和
【经典LeetCode算法题目专栏分类】【第1期】左右双指针系列:盛最多水的容器、接雨水、回文子串、三数之和
|
8月前
|
leetcode代码记录(盛最多水的容器
leetcode代码记录(盛最多水的容器
38 1
【优选算法】—Leetcode—11—— 盛最多水的容器
【优选算法】—Leetcode—11—— 盛最多水的容器
AI助理

你好,我是AI助理

可以解答问题、推荐解决方案等