码迷,mamicode.com
首页 > 其他好文 > 详细

杭电1142(最短路径+dfs)

时间:2014-07-17 23:33:30      阅读:518      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   java   color   

A Walk Through the Forest

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

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
 
思路:
用dis求最短路径,用dfs求最短路径的数量
 
代码:
bubuko.com,布布扣
 1 #include<stdio.h>
 2 #include<stdlib.h>
 3 #include<string.h>
 4 
 5 #define INF 0xfffffff
 6 
 7 
 8 int map[1005][1005], disk[1005], pathnum[1005];
 9 int n, m;
10 
11 int getmin(int x, int y){
12     return x > y ? y : x;
13 }
14 
15 int dis(){
16     int i, j, visit[1005], idmin, min;
17     memset(visit, 0, sizeof(visit));
18     for(i = 1; i <= n; i ++){
19         disk[i] = map[2][i];
20     }
21     disk[2] = 0;
22     for(i = 1; i <= n; i ++){
23         idmin = 0;
24         min = INF;
25         for(j = 1; j <= n; j ++){
26             if(!visit[j] && disk[j] < min){
27                 min = disk[j];
28                 idmin = j;
29             }
30         }
31         visit[idmin] = 1;
32         for(j = 1; j <= n; j ++){
33             if(!visit[j]){
34                 disk[j] = getmin(disk[j], map[idmin][j] + disk[idmin]);
35             }
36         }
37     }
38     return 0;
39 }
40 
41 int dfs(int start){
42     int sum, i;
43     if(start == 2){
44         return 1;
45     }
46     if(pathnum[start] != -1){
47         return pathnum[start];
48     }
49     sum = 0;
50     for(i = 1; i <= n; i ++){
51         if(map[i][start] != INF && map[i][start] == disk[start] - disk[i]){
52             sum += dfs(i);
53         }
54     }
55     pathnum[start] = sum;
56     return pathnum[start];
57 }
58 
59 int main(){
60     int x, y, d, i, j;
61     while(scanf("%d", &n) && n){
62         scanf("%d", &m);
63         for(i = 0; i < 1005; i ++){
64             for(j = 0; j < 1005; j ++){
65                 map[i][j] = INF;
66             }
67         }
68         //printf("%d\n", map[1][1]);
69         for(i = 0; i < m; i ++){
70             scanf("%d %d %d", &x, &y, &d);
71             map[x][y] = map[y][x] = d;
72         }
73         dis();
74         //printf("%d\n", disk[1]);
75         memset(pathnum, -1, sizeof(pathnum));
76         //printf("%d\n", pathnum[1]);
77         printf("%d\n", dfs(1));
78     }
79     return 0;
80 }
View Code

 

杭电1142(最短路径+dfs),布布扣,bubuko.com

杭电1142(最短路径+dfs)

标签:des   style   blog   http   java   color   

原文地址:http://www.cnblogs.com/xiaoyeye/p/3851467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!