题解 | #接雨水问题#

接雨水问题

http://www.nowcoder.com/practice/31c1aed01b394f0b8b7734de0324e00f

/**
 * max water
 * @param arr int整型一维数组 the array
 * @return long长整型
 */
function maxWater( arr ) {
    // write code here
    let res=0,len=arr.length,maxIndex=0,maxValue=arr[0];
    
    for(let i=0;i<len;i++){
        if(arr[i]>maxValue){
            maxIndex=i;
            maxValue=arr[i];
        }
    }
    
    for(let left=0;left<maxIndex;left++){
        for(let i=left+1;i<=maxIndex;i++){
            if(arr[i]<arr[left]){
                res+=arr[left]-arr[i];
            }else {
                left=i;
            }
        }
    }
    
    
    for(let right=len-1;right>maxIndex;right--){
        for(let j=right-1;j>=maxIndex;j--){
            if(arr[j]<arr[right]){
                res+=arr[right]-arr[j];
            }else {
                right=j;
            }
        }
    }
    
    
    return res;
    
    
    
    
}
module.exports = {
    maxWater : maxWater
};
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-26 18:54
说等下个版本吧的发呆爱好者很贪睡:佬最后去了哪家呀
点赞 评论 收藏
分享
喜欢吃蛋糕仰泳鲈鱼是我的神:字节可以找个hr 给你挂了,再放池子捞
点赞 评论 收藏
分享
11-09 12:17
清华大学 C++
out11Man:小丑罢了,不用理会
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务