时间限制: 1 s 空间限制: 256000 KB 题目等级 : 黄金 Gold 题目描述 Description 给定 n 个整数(不一定是正整数)组成的序列,现在要求将序列分割为 m 段,每段子序列中的数在原序列 中连续排列.如何分割才能使这 m 段子序列的和的最大值达到最小? 输入描述 Input Description 文件的第 1 行中有 2 个正整数 n 和 m. 正整数 n 是序列 的长度:正整数 m 是分割的断数. 接下来的一行中有 n 个整数. 输出描述 Output De…
跟CODEVS 3415没有什么区别,也不用高精度. http://www.cnblogs.com/autsky-jadek/p/4055184.html #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> using namespace std; typedef long long ll; ll n,dp[][][],ans=-; int m,wei,len;…