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): 4383    Accepted Submission(s): 1573


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
 
解题思路:这题与HDU的《校园漫步》差不多,也是先将每点到终点的最短距离保存起来,然后记忆化搜索!
 
解题代码:
 1 // File Name: A Walk Through the Forest 1142.cpp
 2 // Author: sheng
 3 // Created Time: 2013年07月18日 星期四 19时57分53秒
 4 
 5 #include <stdio.h>
 6 #include <string.h>
 7 #include <iostream>
 8 using namespace std;
 9 
10 #ifdef WINDOWS
11     #define LL __int64
12     #define LLD "%I64d"
13 #else
14     #define LL long long
15     #define LLD "%lld"
16 #endif
17 
18 const int max_n = 1004;
19 const LL INF = 0x3fffffff;
20 int n, m;
21 struct point
22 {
23     int x, y;
24 };
25 
26 int map[max_n][max_n];
27 LL vis[max_n], dis[max_n];
28 LL s[max_n];
29 
30 LL DFS(int p)
31 {
32     s[2] = 1;
33     if (s[p] > 0)
34         return s[p]; //记忆化
35     for (int i = 1; i <= n; i ++)
36     {
37         if ((dis[i] < dis[p]) && map[p][i] < INF)
38             s[p] += DFS(i);
39             
40     }
41     return s[p];
42 }
43 
44 int main ()
45 {
46     while (~scanf ("%d", &n) && n)
47     {
48         scanf ("%d", &m);
49         for (int i = 1; i <= n; i ++)
50             for (int j = 1; j <= n; j ++)
51                 map[i][j] = INF;
52         for (int i = 0; i < m; i++)
53         {
54             int a, b, c;
55             scanf ("%d%d%d", &a, &b, &c);
56             map[a][b] = map[b][a] = c;
57         }
58         memset(vis, 0, sizeof (vis));
59         memset(s, 0, sizeof(s));
60         for (int i = 1; i <= n; i ++)
61         {
62             dis[i] = map[2][i];
63         }
64         vis[2] = 1;
65         for (int i = 0; i < n; i ++)
66         {
67             int k;
68             LL min = INF;
69             for (int j = 1; j <= n; j ++)
70             {
71                 if (!vis[j] && min > dis[j])
72                 {
73                     min = dis[j];
74                     k = j;
75                 }
76             }
77             vis[k] = 1;
78             for (int j = 1; j <= n; j ++)
79             {
80                 if (!vis[j] && dis[j] > dis[k] + map[k][j])
81                     dis[j] = dis[k] + map[k][j];
82             }
83         }
84         dis[2] = 0; //因为从2到2是距离为0的
85         DFS(1);
86         printf (LLD"\n", s[1]);
87     }
88     return 0;
89 }
View Code

 

 

posted on 2013-07-18 23:06  圣手摘星  阅读(207)  评论(0编辑  收藏  举报

导航