题解 | #最大放牛数#

最大放牛数

https://www.nowcoder.com/practice/5ccfbb41306c445fb3fd35a4d986f8b2

package main

/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param pasture int整型一维数组 
 * @param n int整型 
 * @return bool布尔型
*/
func canPlaceCows( pasture []int ,  n int ) bool {
    // write code here
    if len(pasture)==0&&n!=0{
        return false
    }
    max :=0
    for left,right :=0,0;right<len(pasture)-1;right++{
        if pasture[left]==0&&pasture[left+1]==0{
            pasture[left]=1
            max++
        }
        if right-left==2&&pasture[right+1]==0{
            pasture[right]=1
            left=right
            max++
        }
    }
    if pasture[len(pasture)-1]==0&&pasture[len(pasture)-2]==0{
        max++
    }
    return max>=n

}

全部评论

相关推荐

09-22 15:45
门头沟学院 Java
谁给娃offer我给...:我也遇到了,我说只要我通过面试我就去,实际上我根本就不会去😁
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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