小动物牛牛生活在一个美丽的森林中,森林中有一排排的果树,每棵果树上都有不同数量的果实。每天,牛牛都会从森林中的某棵果树开始,然后按照固定的顺序收集果实,每次只能收集一棵树上的所有果实,然后移动到下一棵树。但是,牛牛的收集篮子有限,每天只能收集最多M个果实。 现在,给出每棵树上果实的数量,以及牛牛每天能收集的果实数量M,你需要找到牛牛每天能收集到的最大果实数量。
示例1
输入
[3, 1, 4, 2, 8],7
输出
7
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param trees int整型一维数组 * @param M int整型 * @return int整型 */ public int maxFruits (int[] trees, int M) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param trees int整型vector * @param M int整型 * @return int整型 */ int maxFruits(vector
& trees, int M) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param trees int整型一维数组 # @param M int整型 # @return int整型 # class Solution: def maxFruits(self , trees , M ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param trees int整型一维数组 * @param M int整型 * @return int整型 */ public int maxFruits (List
trees, int M) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param trees int整型一维数组 * @param M int整型 * @return int整型 */ function maxFruits( trees , M ) { // write code here } module.exports = { maxFruits : maxFruits };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param trees int整型一维数组 # @param M int整型 # @return int整型 # class Solution: def maxFruits(self , trees: List[int], M: int) -> int: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param trees int整型一维数组 * @param M int整型 * @return int整型 */ func maxFruits( trees []int , M int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param trees int整型一维数组 * @param treesLen int trees数组长度 * @param M int整型 * @return int整型 */ int maxFruits(int* trees, int treesLen, int M ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param trees int整型一维数组 # @param M int整型 # @return int整型 # class Solution def maxFruits(trees, M) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param trees int整型一维数组 * @param M int整型 * @return int整型 */ def maxFruits(trees: Array[Int],M: Int): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param trees int整型一维数组 * @param M int整型 * @return int整型 */ fun maxFruits(trees: IntArray,M: Int): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param trees int整型一维数组 * @param M int整型 * @return int整型 */ public int maxFruits (int[] trees, int M) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param trees int整型一维数组 * @param M int整型 * @return int整型 */ export function maxFruits(trees: number[], M: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param trees int整型一维数组 * @param M int整型 * @return int整型 */ func maxFruits ( _ trees: [Int], _ M: Int) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param trees int整型一维数组 * @param M int整型 * @return int整型 */ pub fn maxFruits(&self, trees: Vec
, M: i32) -> i32 { // write code here } }
[3, 1, 4, 2, 8],7
7