程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU-3143-Speedy Escape(最短路+路徑記錄)

HDU-3143-Speedy Escape(最短路+路徑記錄)

編輯:C++入門知識

Problem Description

\

The Newton brothers are planning to rob a bank in the city of Alviso and want to figure out a way to escape the city"s only police car. They know that their car is faster than the police car so if they could just reach one of the highways exiting the city they will be able to speed away from the police.

The police car has a maximum speed of 160 km/h. Luckily, the brothers know where the police car will start (it's parked at the police station). To be on the safe side they assume that the police car will start moving as soon as they leave the bank and start their car (this is when the alarm goes off).

The brothers want to find a fixed route that ensures that they are able to leave the city no matter what route the police car take and at what speed it drives. However, since the brothers are not very confident drivers they don't want to drive faster than necessary. Luckily they have recently invested in a new hi-tech in-car police escape system that you have constructed. This system will tell them what the minimal top speed needed to escape is (and probably other useful things like what route to take).

Let's turn the clock back a bit to the time when you were constructing the escape system and focused on finding the minimal required speed. Can you get it right?

You may treat all roads as infinitesimally narrow and both cars as point objects. If the brothers ever end up at the same point (on any road or intersection) at the same time as the police car they will be caught and by Murphy's law if there is any possibility of this happening it will happen. The two cars start simultaneously and can accelerate/decelerate instantaneously at any time to any speed below or equal to its maximum speed. They can also change roads at intersections or direction anywhere on a road instantaneously no matter what speed they are traveling at.

Input The first line of the input consists of three integersn, m and e, where 2 <= n <= 100 describe the number of intersections, 1 <=m <= 5000 describes the number of roads in the city and 1 <= e <=n describes the number of highway exits. Then follow m lines, each consisting of three integersa, b, l such that 1 <= a < b <= n and 1 <= l <= 100 describing a road of length l hundred meters from intersectiona to intersection b. Then follows a line of e integers, each one a number in 1, ...,n describing which intersections are connected to highway exits. Finally there is a line with two integersb and p (1 <= b, p <= n and b !=p) describing the intersections where the brothers and the police cars start, respectively.

It will always be possible to travel from any intersection to any other intersection. Roads are only connected at intersection points (although they may cross using bridges or tunnels at others points). Roads can be used in both directions but there cannot be more than one road between two intersections.
Output The minimal speed in km/h required to escape or the wordIMPOSSIBLE if it is impossible. In the first case any answer with either absolute or relative error smaller than 10-6 is acceptable.
Sample Input
3 2 1
1 2 7
2 3 8
1
3 2
3 2 1
1 2 7
2 3 8
1
2 3
4 4 2
1 4 1
1 3 4
3 4 10
2 3 30
1 2
3 4

Sample Output
IMPOSSIBLE
74.6666666667
137.142857143

思路:首先用Dijkstra求出搶劫犯繞過警察所在起點到各個終點的最短路dp[i]並記錄其路徑。再求出警察到各個點的最短路dq[i]。 判斷有無結果的話,就直接看所有dp[i],如果都是INF就無結果。 如果有結果就查找所有能到達終點的路徑,找最小速度。 (這裡只用了帶路徑記錄的Dijkstra,具體看代碼)


#include 
#include 
#define INF 9999999
using namespace std;

int map[101][101],des[101],n,m,e,p,q,dp[101],dq[101],vis[101],son[101];

int main()
{
    int i,j,ta,tb,tc,minindex,minnum,temp;

    while(~scanf("%d%d%d",&n,&m,&e))
    {
        for(i=1;i<=n;i++) for(j=1;j<=n;j++) map[i][j]=INF;

        while(m--)
        {
            scanf("%d%d%d",&ta,&tb,&tc);

            map[ta][tb]=map[tb][ta]=tc;
        }

        for(i=0;idp[minindex]+map[minindex][i] && i!=q)
                {
                    dp[i]=dp[minindex]+map[minindex][i];
                    son[i]=minindex;//記錄路徑
                }
            }
        }

        for(i=1;i<=n;i++) vis[i]=0,dq[i]=INF;
        dq[q]=0;

        ta=n-1;//警察到各點的最小距離
        while(ta--)
        {
            minnum=INF;
            for(i=1;i<=n;i++)
            {
                if(!vis[i] && dq[i]dq[minindex]+map[minindex][i])
                {
                    dq[i]=dq[minindex]+map[minindex][i];
                }
            }
        }

        for(i=0;i

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved