POJ1695 Magazine Delivery (记忆化DP)

                                                                                 Magazine Delivery
Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 1438 Accepted: 668

Description

The TTT Taxi Service in Tehran is required to deliver some magazines to N locations in Tehran. The locations are labeled L1 to LN. TTT assigns 3 cars for this service. At time 0, all the 3 cars and magazines are located at L1. There are plenty of magazines available in L1 and the cars can take as many as they want. Copies of the magazine should be delivered to all locations, observing the following rules:
  1. For all i = 2 .. N, magazines should be delivered at Li only after magazines are delivered at Li-1 .
  2. At any time, only one of the three cars is driving, and the other two are resting in other locations.

The time to go from Li to Lj (or reverse) by any car is a positive integer denoted by D[i , j].
The goal is to organize the delivery schedule for the cars such that the time by which magazines are delivered to all N locations is minimum.
Write a program to compute the minimum delivery time.

Input

The input file contains M instances of this problem (1 <= M <= 10). The first line of the input file is M. The descriptions of the input data follows one after the other. Each instance starts with N in a single line (N <= 30). Each line i of the following N-1 lines contains D[i , j], for all i=1..N-1, and j=i+1..N.

Output

The output contains M lines, each corresponding the solution to one of the input data. In each line, the minimum time it takes to deliver the magazines to all N locations is written.

Sample Input

1
5
10 20 3 4
5 10 20
8 18
19

Sample Output

22
想了很久知道是DP却感觉有点无从下手,看了一位大牛的blog,呵呵。。。。。。找到了该题的动态方程:
/*
三维数组DP,假设第一辆车所在位置大于第二辆车位置大于第三辆车位置
则如果当前dp[i][j][k]已经计算过,那么
(1)第一辆车开到i + 1, dp[i + 1][j][k] = min{dp[i + 1][j][k], dp[i][j][k] + cost[i][i + 1]};
(2)第二辆车开到i + 1, dp[i + 1][i][k] = min{dp[i + 1][i][k], dp[i][j][k] + cost[j][i + 1]};
(3)第三辆车开到i + 1, dp[i + 1][i][j] = min{dp[i + 1][i][j], dp[i][j][k] + cost[k][i + 1]}.
*/
先在这里谢谢bobten2008大牛,感谢。。。。。。。贴上小弟的代码:
 
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值