hduoj----1142A Walk Through the Forest(记忆化搜索+最短路)

A Walk Through the Forest

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

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

这道题的大意为:

这道题不同于以前简单的最短路径,它要求的是:如果A到B的过程中, 假如存在一个B点到家终点(2号点)的路径比所有A到家终点的路径要短。

即 distance[B][2]>distance[A][2];   那么A->B->2的路径算一条,计算这样的路径的条数.........

对于这道题,我们其实可以这样思考

我们不妨先算出。2号点到所有点的最短距离,然后再来优先搜索所有满足这样的条件的个数即为它的路径的个数.....

代码:

 1 #include<cstdio>
 2 #include<cstring>
 3 using namespace std;
 4 const int inf =0x3f3f3f3f;
 5 const int maxn =1005;
 6 bool vis[maxn];
 7 int lowc[maxn],map[maxn][maxn];
 8 int roadnum[maxn];
 9 void Dijkstra(int st,int n)
10 {
11     int minx;
12     memset(vis,0,sizeof(vis));
13     vis[st]=0;
14     for(int i=1;i<=n;i++){
15       lowc[i]=map[st][i];
16     }
17     lowc[st]=0;
18     int pre=st;
19     for(int i=1;i<n;i++){
20       minx=inf;
21       for(int j=1;j<=n;j++){
22         if(!vis[j]&&lowc[pre]+map[pre][j]<lowc[j]){
23             lowc[j]=lowc[pre]+map[pre][j];
24            }
25
26         }
27         for(int j=1;j<=n;j++){
28           if(!vis[j]&&minx>lowc[j]){
29               minx=lowc[j];
30               pre=j;
31             }
32         }
33         vis[pre]=true;
34     }
35 }
36
37 /*记忆化搜索dfs*/
38 int Dfs(int st,int n){
39
40     if(st==2)  return 1;
41     else if(roadnum[st]) return roadnum[st] ;  //如果已经计算出来了就直接返回的路径条数
42      int sum=0;
43      for(int i=1;i<=n;i++){
44         if(map[st][i]!=inf&&lowc[st]>lowc[i])
45           sum+=Dfs(i,n);
46      }
47      roadnum[st]+=sum;
48      return roadnum[st];
49 }
50 void init(int n)
51 {
52   for(int i=1;i<=n;i++){
53     for(int j=i;j<=n;j++){
54         map[i][j]=map[j][i]=inf;
55         }
56     }
57 }
58 int main()
59 {
60     int n,m;
61     int x,y,val;
62     while(scanf("%d",&n)!=EOF&&n!=0){
63         scanf("%d",&m);
64         init(n);
65          memset(roadnum,0,sizeof(roadnum));
66         while(m--){
67           scanf("%d%d%d",&x,&y,&val);
68           if(map[y][x]>val)
69             map[y][x]=map[x][y]=val;
70         }
71         Dijkstra(2,n);
72         printf("%d\n",Dfs(1,n));
73     }
74   return 0;
75 }

hduoj----1142A Walk Through the Forest(记忆化搜索+最短路)

时间: 2024-10-12 13:00:53

hduoj----1142A Walk Through the Forest(记忆化搜索+最短路)的相关文章

HDU - 5001 Walk(概率dp+记忆化搜索)

Walk I used to think I could be anything, but now I know that I couldn't do anything. So I started traveling. The nation looks like a connected bidirectional graph, and I am randomly walking on it. It means when I am at node i, I will travel to an ad

HDU 1142 A Walk Through the Forest【记忆化搜索+最短路Dijkstra算法】

A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7601    Accepted Submission(s): 2796 Problem Description Jimmy experiences a lot of stress at work these days, especial

NYOJ564 &amp; CSU 1106 最优对称路径【记忆化搜索+最短路】

最优对称路径 时间限制:1000 ms  |  内存限制:65535 KB 难度:3 描述     给一个 n 行 n 列的网格,每个格子里有一个 1 到 9 的数字.你需要从左上角走到右下角,其中每一步只能往上.下.左.右四个方向之一走到相邻格子,不能斜着走,也不能走出网格,但可以重复经过一个格子.为了美观,你经过的路径还必须关于"左下-右上"这条对角线对称.下图是一个 6x6 网格上的对称路径. 你的任务是统计所有合法路径中,数字之和最小的路径有多少条. 输入 输入最多包含 25

HDU 1142 A Walk Through the Forest (Dijkstra + 记忆化搜索 好题)

A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 6350    Accepted Submission(s): 2332 Problem Description Jimmy experiences a lot of stress at work these days, especial

hdu 1142 A Walk Through the Forest (digkstra+记忆化搜索)

A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7322    Accepted Submission(s): 2685 Problem Description Jimmy experiences a lot of stress at work these days, especial

HDU1142 A Walk Through the Forest 【SPFA】+【记忆化搜索】

A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5688    Accepted Submission(s): 2089 Problem Description Jimmy experiences a lot of stress at work these days, especial

hdu 1142 A Walk Through the Forest (Dijkstra + 记忆化搜索)

A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5984    Accepted Submission(s): 2211 Problem Description Jimmy experiences a lot of stress at work these days, especial

HDU 1142 A Walk Through the Forest (记忆化搜索+Dijkstra算法)

A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7583    Accepted Submission(s): 2791 Problem Description Jimmy experiences a lot of stress at work these days, especial

HDU 1142 A Walk Through the Forest(最短路+记忆化搜索)

A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 10172    Accepted Submission(s): 3701 Problem Description Jimmy experiences a lot of stress at work these days, especial