农场里有一群牛,每头牛都有一个编号。农场主每晚都会选择一些牛进行夜间巡逻,以防止野生动物入侵。每头牛的警戒值表示为一个非负整数,代表它在巡逻时的警觉程度。由于牛群围成了一个圈,农场主不能同时选择相邻的两头牛进行巡逻,以免出现警戒盲区。 给定一个代表每头牛警戒值的非负整数数组,计算农场主在不选择相邻牛的情况下,能够得到的最大警戒值。
示例1
输入
[1, 2, 3]
输出
4
示例2
输入
[1, 2, 4, 1]
输出
5
备注:
1 0
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param values int整型一维数组 * @return int整型 */ public int maxPatrolValue (int[] values) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param values int整型vector * @return int整型 */ int maxPatrolValue(vector
& values) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param values int整型一维数组 # @return int整型 # class Solution: def maxPatrolValue(self , values ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param values int整型一维数组 * @return int整型 */ public int maxPatrolValue (List
values) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param values int整型一维数组 * @return int整型 */ function maxPatrolValue( values ) { // write code here } module.exports = { maxPatrolValue : maxPatrolValue };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param values int整型一维数组 # @return int整型 # class Solution: def maxPatrolValue(self , values: List[int]) -> int: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param values int整型一维数组 * @return int整型 */ func maxPatrolValue( values []int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param values int整型一维数组 * @param valuesLen int values数组长度 * @return int整型 */ int maxPatrolValue(int* values, int valuesLen ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param values int整型一维数组 # @return int整型 # class Solution def maxPatrolValue(values) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param values int整型一维数组 * @return int整型 */ def maxPatrolValue(values: Array[Int]): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param values int整型一维数组 * @return int整型 */ fun maxPatrolValue(values: IntArray): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param values int整型一维数组 * @return int整型 */ public int maxPatrolValue (int[] values) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param values int整型一维数组 * @return int整型 */ export function maxPatrolValue(values: number[]): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param values int整型一维数组 * @return int整型 */ func maxPatrolValue ( _ values: [Int]) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param values int整型一维数组 * @return int整型 */ pub fn maxPatrolValue(&self, values: Vec
) -> i32 { // write code here } }
[1, 2, 3]
4
[1, 2, 4, 1]
5