poj 1695 Magazine Delivery

题目链接:http://poj.org/problem?id=1695

题目思路:定义dp[i][j][k]为三辆车分别在i,j,k点处的最小时间且i<=j<=k;

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define inf 0x3f3f3f3f
#define Max 110
int max(int a,int b)
{
	return a>b?a:b;
}
int min(int a,int b)
{
    if(a==-1)
        return b;
	return a


你可能感兴趣的:(poj 1695 Magazine Delivery)