hdu 1142

来源:互联网 发布:美工算平面设计吗 编辑:程序博客网 时间:2024/06/05 13:26

A Walk Through the Forest

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 8586 Accepted Submission(s): 3178

Problem Description
Jimmy experiences a lot of stress at work these days, especially since his accident made working difficult. To relax after a hard day, he likes to walk home. To make things even nicer, his office is on one side of a forest, and his house is on the other. A nice walk through the forest, seeing the birds and chipmunks is quite enjoyable.
The forest is beautiful, and Jimmy wants to take a different route everyday. He also wants to get home before dark, so he always takes a path to make progress towards his house. He considers taking a path from A to B to be progress if there exists a route from B to his home that is shorter than any possible route from A. Calculate how many different routes through the forest Jimmy might take.

Input
Input contains several test cases followed by a line containing 0. Jimmy has numbered each intersection or joining of paths starting with 1. His office is numbered 1, and his house is numbered 2. The first line of each test case gives the number of intersections N, 1 < N ≤ 1000, and the number of paths M. The following M lines each contain a pair of intersections a b and an integer distance 1 ≤ d ≤ 1000000 indicating a path of length d between intersection a and a different intersection b. Jimmy may walk a path any direction he chooses. There is at most one path between any pair of intersections.

Output
For each test case, output a single integer indicating the number of different routes through the forest. You may assume that this number does not exceed 2147483647

Sample Input
5 6
1 3 2
1 4 2
3 4 3
1 5 12
4 2 34
5 2 24
7 8
1 3 1
1 4 1
3 7 1
7 4 1
7 5 1
6 7 1
5 2 1
6 2 1
0

Sample Output
2
4

Source
University of Waterloo Local Contest 2005.09.24

Recommend
Eddy | We have carefully selected several similar problems for you: 1217 2112 1598 1690 2680

Statistic | Submit | Discuss | Note

#include <iostream>#include <stdio.h>#include <string.h>#define int long longusing namespace std;const int N = 1234;const int INF = 12345678;int G[N][N];int dist[N];int vis[N];int dp[N];int n;void dij(int v0){    int pos=v0;    for(int i=1;i<=n;i++)    {        dist[i]=G[v0][i];    }    vis[pos]=1;    for(int i=1;i<n;i++)    {        int mins=INF;        for(int j=1;j<=n;j++)        {            if(!vis[j] && dist[j] < mins)            {                pos=j;                mins=dist[j];            }        }        vis[pos]=1;        for(int j=1;j<=n;j++)        {            if(!vis[j] && dist[j] > dist[pos]+G[pos][j])            {                dist[j] = dist[pos]+G[pos][j];            }        }    }}int DFS(int src){    int sum = 0;    if(dp[src]!=-1)    {        return dp[src];    }    if(src==2)    {        return 1;    }    for(int i=1;i<=n;i++)    {        if(G[src][i] < INF && dist[src] > dist[i])        {            sum+=DFS(i);        }    }    dp[src]=sum;    return dp[src];}signed main(){    while(scanf("%lld",&n),n)    {        memset(vis,0,sizeof(vis));        for(int i=1;i<=n;i++)        {            for(int j=1;j<=n;j++)            {                if(i==j)                {                    G[i][j]=0;                }                else                {                    G[i][j]=INF;                }            }        }        int m;        scanf("%lld",&m);        for(int i=1;i<=m;i++)        {            int u,v,w;            scanf("%lld %lld %lld",&u,&v,&w);            if(w<G[u][v])            {                G[u][v]=G[v][u]=w;            }        }        dij(2);        memset(dp,-1,sizeof(dp));        printf("%lld\n",DFS(1));    }    return 0;}
1 0
原创粉丝点击