POJ - 2686 ——Traveling by Stagecoach (状态压缩DP)

来源:互联网 发布:会计模拟考试软件下载 编辑:程序博客网 时间:2024/05/21 06:22




Description

Once upon a time, there was a traveler. 

He plans to travel using stagecoaches (horse wagons). His starting point and destination are fixed, but he cannot determine his route. Your job in this problem is to write a program which determines the route for him. 

There are several cities in the country, and a road network connecting them. If there is a road between two cities, one can travel by a stagecoach from one of them to the other. A coach ticket is needed for a coach ride. The number of horses is specified in each of the tickets. Of course, with more horses, the coach runs faster. 

At the starting point, the traveler has a number of coach tickets. By considering these tickets and the information on the road network, you should find the best possible route that takes him to the destination in the shortest time. The usage of coach tickets should be taken into account. 

The following conditions are assumed. 
  • A coach ride takes the traveler from one city to another directly connected by a road. In other words, on each arrival to a city, he must change the coach. 
  • Only one ticket can be used for a coach ride between two cities directly connected by a road. 
  • Each ticket can be used only once. 
  • The time needed for a coach ride is the distance between two cities divided by the number of horses. 
  • The time needed for the coach change should be ignored.

Input

The input consists of multiple datasets, each in the following format. The last dataset is followed by a line containing five zeros (separated by a space). 

n m p a b 
t1 t2 ... tn 
x1 y1 z1 
x2 y2 z2 
... 
xp yp zp 

Every input item in a dataset is a non-negative integer. If a line contains two or more input items, they are separated by a space. 

n is the number of coach tickets. You can assume that the number of tickets is between 1 and 8. m is the number of cities in the network. You can assume that the number of cities is between 2 and 30. p is the number of roads between cities, which may be zero. 

a is the city index of the starting city. b is the city index of the destination city. a is not equal to b. You can assume that all city indices in a dataset (including the above two) are between 1 and m. 

The second line of a dataset gives the details of coach tickets. ti is the number of horses specified in the i-th coach ticket (1<=i<=n). You can assume that the number of horses is between 1 and 10. 

The following p lines give the details of roads between cities. The i-th road connects two cities with city indices xi and yi, and has a distance zi (1<=i<=p). You can assume that the distance is between 1 and 100. 

No two roads connect the same pair of cities. A road never connects a city with itself. Each road can be traveled in both directions.

Output

For each dataset in the input, one line should be output as specified below. An output line should not contain extra characters such as spaces. 

If the traveler can reach the destination, the time needed for the best route (a route with the shortest time) should be printed. The answer should not have an error greater than 0.001. You may output any number of digits after the decimal point, provided that the above accuracy condition is satisfied. 

If the traveler cannot reach the destination, the string "Impossible" should be printed. One cannot reach the destination either when there are no routes leading to the destination, or when the number of tickets is not sufficient. Note that the first letter of "Impossible" is in uppercase, while the other letters are in lowercase. 

Sample Input

3 4 3 1 43 1 21 2 102 3 303 4 202 4 4 2 13 12 3 31 3 34 1 24 2 52 4 3 4 15 51 2 102 3 103 4 101 2 0 1 218 5 10 1 52 7 1 8 4 5 6 31 2 52 3 43 4 74 5 31 3 252 4 233 5 221 4 452 5 511 5 990 0 0 0 0

Sample Output

30.0003.667ImpossibleImpossible2.856




这道题的意思是说给你n张票、m座城市、城市之间一共有p条道路、城市a和城市b


给出n张票

给出p条道路


设T为从v到达u之间的时间。。T = d(v,u之间的距离) /  n_i (表示第i张票所代表的可以用几头马)


求的是从a到达b之间最少的时间


该题的思路是设想一个集合S,S表示所有的车票集合,然后遍历 v-u之间的所有的情况,如果用到第i张票,则从S中除去第i个元素

依次这样通过dp数组来求解min_T


#include <iostream>#include <cstdio>#include <cstdlib>#include <string>#include <cmath>#include <algorithm>#include <cstring>#include <map>#include <sstream>#include <queue>#include <stack>#define INF 0x3f3f3f3f#define mem(a,b) memset(a,b,sizeof(a));#define For(a,b) for(int i = a;i<b;i++)#define LL long long#define MAX_N 40using namespace std;int d[MAX_N][MAX_N],t[MAX_N];double dp[1<<10][MAX_N];int main(){    int n,m,p,a,b;    while(~scanf("%d%d%d%d%d",&n,&m,&p,&a,&b))    {        if(n==0&&m==0&&p==0&&a==0&&b==0) break;        mem(d,-1);        for(int i = 0; i < 1<<n; i++)        {            fill(dp[i],dp[i] + m,INF);        }        dp[(1<<n)-1][a-1] =  0;        for(int i = 0; i<n; i++)            scanf("%d",&t[i]);        if(p==0)        {            cout<<"Impossible"<<endl;            continue;        }        for(int i = 0; i<p; i++)        {            int v,u,cost;            scanf("%d%d%d",&v,&u,&cost);            d[v-1][u-1] = cost;            d[u-1][v-1] = cost;        }        double ans = INF;        for(int s = (1<<n)-1; s>=0; s--)        {            ans = min(ans,dp[s][b-1]);            for(int v = 0; v<m; v++)            {                for(int i = 0; i<n; i++)                {                    if(s >> i&1)                    {                        for(int u = 0; u<m; u++)                        {                            if(d[v][u] >= 0)                                dp[s & ~(1<<i)][u] = min(dp[s & ~(1<<i)][u],dp[s][v] + (double)d[v][u]/t[i] );                        }                    }                }            }        }        if(ans == INF) printf("Impossible\n");        else printf("%.3f\n",ans);    }    return 0;}







1 0
原创粉丝点击