题解 | #盛水最多的容器#

盛水最多的容器

https://www.nowcoder.com/practice/3d8d6a8e516e4633a2244d2934e5aa47

import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param height int整型一维数组 
     * @return int整型
     */
    public int maxArea (int[] height) {
        // write code here
        int maxResult = 0;


        if(height.length < 100){
            for(int i = 0; i < height.length - 1; i++){
                int temp = height[i];
                for(int j = i + 1; j < height.length; j++){
                    int low = temp <= height[j] ? temp : height[j];
                    if(low * (j - i) > maxResult)
                        maxResult = low * (j - i);
                }
            }
        }else {
            for(int i = 0; i < height.length - 1; i++){
                int temp = height[i];
                for(int j = i + height.length / 2; j < height.length; j++){
                    int low = temp <= height[j] ? temp : height[j];
                    if(low * (j - i) > maxResult)
                        maxResult = low * (j - i);
                }
            }
        }

        return maxResult;
    }
}

全部评论
题目不一定要做出来,而是要通过所有的测试用例
点赞 回复 分享
发布于 2024-06-04 18:38 上海

相关推荐

UtopianYou...:这个简历排版真的不太行哦,去找免费的或者花点小钱,把排版弄整齐一点吧,看着舒服。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务