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求最短路径的数量
 
代码:
 #include<stdio.h>
#include<stdlib.h>
#include<string.h> #define INF 0xfffffff int map[][], disk[], pathnum[];
int n, m; int getmin(int x, int y){
return x > y ? y : x;
} int dis(){
int i, j, visit[], idmin, min;
memset(visit, , sizeof(visit));
for(i = ; i <= n; i ++){
disk[i] = map[][i];
}
disk[] = ;
for(i = ; i <= n; i ++){
idmin = ;
min = INF;
for(j = ; j <= n; j ++){
if(!visit[j] && disk[j] < min){
min = disk[j];
idmin = j;
}
}
visit[idmin] = ;
for(j = ; j <= n; j ++){
if(!visit[j]){
disk[j] = getmin(disk[j], map[idmin][j] + disk[idmin]);
}
}
}
return ;
} int dfs(int start){
int sum, i;
if(start == ){
return ;
}
if(pathnum[start] != -){
return pathnum[start];
}
sum = ;
for(i = ; i <= n; i ++){
if(map[i][start] != INF && map[i][start] == disk[start] - disk[i]){
sum += dfs(i);
}
}
pathnum[start] = sum;
return pathnum[start];
} int main(){
int x, y, d, i, j;
while(scanf("%d", &n) && n){
scanf("%d", &m);
for(i = ; i < ; i ++){
for(j = ; j < ; j ++){
map[i][j] = INF;
}
}
//printf("%d\n", map[1][1]);
for(i = ; i < m; i ++){
scanf("%d %d %d", &x, &y, &d);
map[x][y] = map[y][x] = d;
}
dis();
//printf("%d\n", disk[1]);
memset(pathnum, -, sizeof(pathnum));
//printf("%d\n", pathnum[1]);
printf("%d\n", dfs());
}
return ;
}

最新文章

  1. [翻译]AKKA笔记 - DEATHWATCH -7
  2. 小试牛刀2:JavaScript基础题
  3. linux 下用户管理
  4. 复制表结构和数据SQL语句
  5. C++—函数探幽
  6. c++ encode decode
  7. 第三百五十九天 how can I 坚持
  8. python自定义线程池
  9. Tomcat启动报错 Failed to start component [StandardServer[8005]]解决
  10. 使用spring mvc返回JSON,chrome可以,firefox不行的问题定位
  11. JavaScript基础知识(一)
  12. 201521044091 《Java程序设计》第3周学习总结
  13. POJ2387 Til the Cows Come Home【Kruscal】
  14. python3 下列表与字典转换
  15. 将DOS格式的shell脚本转为UNIX格式
  16. Th&#234;m Một Lần Đau--错错错--IPA--越南语
  17. JavaScript 计时
  18. NO17--vue父子组件间单向数据流的解决办法
  19. 安装 Flex2packagebeta_1.994
  20. 137.Single Number II---位运算---《剑指offer》40

热门文章

  1. Android——ViewPager多页面滑动切换以及动画效果
  2. wex5添加视频播放
  3. (转)iOS7界面设计规范(8) - UI基础 - 术语和措辞
  4. PHP设计模式笔记九:装饰器模式 -- Rango韩老师 http://www.imooc.com/learn/236
  5. HashMap的存储结构及原理
  6. Caused by: java.lang.ClassNotFoundException: javassist.ClassPool
  7. 图像重采样(CPU和GPU)
  8. open(),close() 打开/关闭文件
  9. Android-IM架构设计
  10. 使用Express创建一个简单的示例