给定一个长度为 n 的非负整数数组 num ,和一个整数 m ,你需要把这个数组 num 分成 m 个非空连续子数组。 请你找出这些连续子数组各自的和的最大值最小的方案并输出这个值。 数据范围: , ,
示例1
输入
[1,2,3,4,5,6],3
输出
9
说明
1,2,3 为一组 4,5为一组,6为一组
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型ArrayList * @param m int整型 * @return int整型 */ public int splitMin (ArrayList
num, int m) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型vector * @param m int整型 * @return int整型 */ int splitMin(vector
& num, int m) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param num int整型一维数组 # @param m int整型 # @return int整型 # class Solution: def splitMin(self , num , m ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型一维数组 * @param m int整型 * @return int整型 */ public int splitMin (List
num, int m) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型一维数组 * @param m int整型 * @return int整型 */ function splitMin( num , m ) { // write code here } module.exports = { splitMin : splitMin };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param num int整型一维数组 # @param m int整型 # @return int整型 # class Solution: def splitMin(self , num: List[int], m: int) -> int: # write code here
package main //import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型一维数组 * @param m int整型 * @return int整型 */ func splitMin( num []int , m int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型一维数组 * @param numLen int num数组长度 * @param m int整型 * @return int整型 */ int splitMin(int* num, int numLen, int m ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param num int整型一维数组 # @param m int整型 # @return int整型 # class Solution def splitMin(num, m) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型一维数组 * @param m int整型 * @return int整型 */ def splitMin(num: Array[Int],m: Int): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型一维数组 * @param m int整型 * @return int整型 */ fun splitMin(num: IntArray,m: Int): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型一维数组 * @param m int整型 * @return int整型 */ public int splitMin (int[] num, int m) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型一维数组 * @param m int整型 * @return int整型 */ export function splitMin(num: number[], m: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型一维数组 * @param m int整型 * @return int整型 */ func splitMin ( _ num: [Int], _ m: Int) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型一维数组 * @param m int整型 * @return int整型 */ pub fn splitMin(&self, num: Vec
, m: i32) -> i32 { // write code here } }
[1,2,3,4,5,6],3
9