HDU 2680 choose the best route (Shortest Path)

Source: Internet
Author: User
Choose the best route Time limit:1000 ms Memory limit:32768kb 64bit Io format:% I64d & % i64usubmit status practice HDU 2680

Description

One day, Kiki wants to visit one of her friends. as she is liable to carsickness, she wants to arrive at her friend's home as soon as possible. now give you a map of the city's traffic route, and the stations which are near Kiki's home so that she can take. you may suppose Kiki can change the bus at any station. please find out the least time Kiki needs to spend. to make it easy, if the city hav E n bus stations, the stations will been expressed as an integer 1, 2, 3... N.

Input

There are several test cases.
Each case begins with three integers n, m and S, (n <1000, m <20000,1 = <S <= N) N stands for the number of bus stations in this city and M stands for the number of directed ways between bus stations. (maybe there are several ways between two bus stations .) S stands for the bus station that near Kiki's friend's home.
Then follow M lines, each line contains three integers p, q, T (0 <t <= 1000 ). means from station P to station Q there is a way and it will costs t minutes.
Then a line with an integer W (0 <W <n), means the number of stations Kiki can take at the beginning. Then follows W integers stands for these stations.

Output

The output contains one line for each data set: the least time Kiki needs to spend, if it's impossible to find such a route, just output "-1 ".

Sample Input

5 8 51 2 21 5 31 3 42 4 72 5 62 3 53 5 14 122 34 3 41 2 31 3 42 3 211

Sample output

1-1
#include<cstdio>#include<cstring>#include<cmath>#include<iostream>#include<algorithm>#define INF 1000000000using namespace std;int w[1000+10][1000+10];int d[1000+10];int v[1000+10];int n,t,ans;void dij(){    memset(v,0,sizeof(v));    for(int i=0;i<=n;i++) {d[i]=(i==0?0:INF);}    for(int i=0;i<=n;i++)    {        int x,m=INF;        for(int y=0;y<=n;y++) if(!v[y]&&d[y]<=m) m=d[x=y];        v[x]=1;        for(int y=0;y<=n;y++)        {            if(d[y]>d[x]+w[x][y])            {                d[y]=d[x]+w[x][y];            }        }    }}int main(){    int i,j,m;    int f,to,time;    while(scanf("%d%d%d",&n,&m,&t)!=EOF)    {        for(i=0;i<=n;i++)        {            for(j=0;j<=n;j++)            {                w[i][j]=INF;            }        }        while(m--)        {            scanf("%d%d%d",&f,&to,&time);            if(time<w[f][to]) w[f][to]=time;        }        int coun;        scanf("%d",&coun);        while(coun--)        {            int temp;            scanf("%d",&temp);            w[0][temp]=0;        }        dij();        if(d[t]<INF) printf("%d\n",d[t]);        else printf("-1\n");    }    return 0;}

  

HDU 2680 choose the best route (Shortest Path)

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.