Hdu1385Minimum Transport Cost (short-circuit variant)

Source: Internet
Author: User

Hdu1385Minimum Transport Cost (short-circuit variant)
Idea: The most short-circuit variant of the output path .. This question lies in multiple groups of inquiries, so I personally think it is more secure to use floyd. In addition, there is a toll in every city, so you can change the Loose Condition in floyd .. What about the output path ?? I use the successor of the output starting point instead of the precursor to the end point .. Because we care about the smallest Lexicographic Order of paths and the successor of the starting point... The print path is printed directly from the front to the back, which is slightly different from the print path of dijkstra... For the printing of the shortest path, see the shipping question: Minimum Transport Cost.Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission (s): 7538 Accepted Submission (s): 1935



Problem Description These are N cities in Spring country. between each pair of cities there may be one transportation track or none. now there is some cargo that shoshould be delivered from one city to another. the transportation extends consists of two parts:
The cost of the transportation on the path between these cities, and

A certain tax which will be charged whenever any cargo passing through one city, Please t for the source and the destination cities.

You must write a program to find the route which has the minimum cost.

Input First is N, number of cities. N = 0 indicates the end of input.

The data of path cost, city tax, source and destination cities are given in the input, which is of the form:

A11 a12... a1N
A21 a22... a2N
...............
AN1 aN2... aNN
B1 b2... bN

C d
E f
...
G h

Where aij is the transport cost from city I to city j, aij =-1 indicates there is no direct path between city I and city j. bi represents the tax of passing through city I. and the cargo is to be delivered from city c to city d, city e to city f ,..., and g = h =-1. you must output the sequence of cities passed by and the total cost which is of the form:

Output From c to d:
Path: c --> c1 -->... --> ck --> d
Total cost :......
......

From e to f:
Path: e --> e1 -->... --> ek --> f
Total cost :......

Note: if there are more minimal paths, output the lexically smallest one. Print a blank line after each test case.


Sample Input

50 3 22 -1 43 0 5 -1 -122 5 0 9 20-1 -1 9 0 44 -1 20 4 05 17 8 3 11 33 52 4-1 -10

Sample Output
From 1 to 3 :Path: 1-->5-->4-->3Total cost : 21From 3 to 5 :Path: 3-->4-->5Total cost : 16From 2 to 4 :Path: 2-->1-->5-->4Total cost : 17

Source Asia 1996, Shanghai (Mainland China)
Recommend Eddy | We have carefully selected several similar problems for you: 1142 1217 2112 2722

Code:
#include
 
  #include
  
   #include#include
   
    #define INF 0x3f3f3f3fusing namespace std;const int maxn=50+10;int dis[maxn][maxn],path[maxn][maxn],n,cost[maxn];int u,st,en;void floyd(){    for(int k=1;k<=n;k++)      for(int i=1;i<=n;i++)        for(int j=1;j<=n;j++)    {        int tmp=dis[i][k]+dis[k][j]+cost[k];        if(tmp
    
     path[i][k]))        {            dis[i][j]=tmp;            path[i][j]=path[i][k];        }    }}void read_Graph(){    for(int i=1;i<=n;i++)        for(int j=1;j<=n;j++)    {        scanf(%d,&u);        if(u==-1)            dis[i][j]=INF;        else        {            dis[i][j]=u;            path[i][j]=j;        }    }    for(int i=1;i<=n;i++)       scanf(%d,&cost[i]);}void solve(){    while(~scanf(%d%d,&st,&en))    {        if(st==-1&&en==-1)  break;        printf(From %d to %d :,st,en);        printf(Path: %d,st);        int Gery=st;        while(Gery!=en)        {            printf(-->%d,path[Gery][en]);            Gery=path[Gery][en];        }        printf(Total cost : %d,dis[st][en]);    }}int main(){    while(~scanf(%d,&n),n)    {        read_Graph();        floyd();        solve();    }    return 0;}
    
   
  
 



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.