Renting Boats

来源:互联网 发布:我国颁布的网络法规 编辑:程序博客网 时间:2024/06/08 02:47

Renting Boats

http://acm.fzu.edu.cn/problem.php?pid=1436


Time Limit:1sMemory limit:32MAccepted Submit:187Total Submit:412

Problem Description

Yangtse Rive Barge Club has set up n barge hiring stops numbered 1, 2, … , n along the Changjiang

River. Passengers can hire barges from any of these stops, and return the barges to one of the stops afterward. The rent for an barge from stop i to stop j is r(i,j) (1<=i,j<=n). Your task is to design an

algorithm to minimize the rent of hiring barges when you traveling from stop 1 to stop n.

Input

There are multiple test cases. The first line of each case contains an integer n indicating the number of the stops (n<=200). The following n-1 lines are the rent between any two stops. The ith following line contains n-i integers indicating r(i,j) (i < j <= n).

Output

For each case, output one line representing the minimal rent.

Sample Input

35 157

Sample Output

12
 
有关图的题目,用Dijkstra算法
 
 
原创粉丝点击