在一个牧场有 n 头牛按一个顺序排列,每头牛都有一个不同的“优先级”值,这些值由一个整数数组 ratings 表示。 你需要按以下要求,给这些牛安排放牧顺序: 每头牛至少需要 1 次放牧。 优先级较高的牛比相邻的优先级较低的牛需要更多次数的放牧。 牧人很懒,所以请你计算安排这些牛最少的放牧次数。
示例1
输入
[4, 2, 3, 2, 5]
输出
8
备注:
n == ratings.length1 0
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ratings int整型一维数组 * @return int整型 */ public int min_pasture_time (int[] ratings) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ratings int整型vector * @return int整型 */ int min_pasture_time(vector
& ratings) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param ratings int整型一维数组 # @return int整型 # class Solution: def min_pasture_time(self , ratings ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ratings int整型一维数组 * @return int整型 */ public int min_pasture_time (List
ratings) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ratings int整型一维数组 * @return int整型 */ function min_pasture_time( ratings ) { // write code here } module.exports = { min_pasture_time : min_pasture_time };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param ratings int整型一维数组 # @return int整型 # class Solution: def min_pasture_time(self , ratings: List[int]) -> int: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ratings int整型一维数组 * @return int整型 */ func min_pasture_time( ratings []int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ratings int整型一维数组 * @param ratingsLen int ratings数组长度 * @return int整型 */ int min_pasture_time(int* ratings, int ratingsLen ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param ratings int整型一维数组 # @return int整型 # class Solution def min_pasture_time(ratings) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ratings int整型一维数组 * @return int整型 */ def min_pasture_time(ratings: Array[Int]): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ratings int整型一维数组 * @return int整型 */ fun min_pasture_time(ratings: IntArray): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ratings int整型一维数组 * @return int整型 */ public int min_pasture_time (int[] ratings) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ratings int整型一维数组 * @return int整型 */ export function min_pasture_time(ratings: number[]): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ratings int整型一维数组 * @return int整型 */ func min_pasture_time ( _ ratings: [Int]) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ratings int整型一维数组 * @return int整型 */ pub fn min_pasture_time(&self, ratings: Vec
) -> i32 { // write code here } }
[4, 2, 3, 2, 5]
8