题目链接:
http://www.lydsy.com/JudgeOnline/problem.php?id=1617
题解:
嘛,注意要看清题,dp[i]表示运送前i头奶牛的最短时间,初始化的地方也要多加注意,递推如代码:
代码:
#include<iostream>
#include<algorithm>
#include<stdio.h>
#define maxn (2505)
using namespace std;
int n,m,dp[maxn],t[maxn],sum[maxn];
int main()
{
scanf("%d%d",&n,&m);