题目:

  gbn最近打算穿过一个森林,但是他比较傲娇,于是他决定只走一些特殊的道路,他打算只沿着满足如下条件的(A,B)道路走:存在一条从B出发回家的路,比所有从A出发回家的路径都短。你的任务是计算一共有多少条不同的回家路径。其中起点的编号为1,终点的编号为2.

分析:

  先求出每个点到终点的距离,根据题目要求找d[u]>d[v]的路径(u,v)走,计算路径数即可。

代码如下:

  1. #include<cstdio>
  2. #include<cstdlib>
  3. #include<cstring>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<queue>
  7. using namespace std;
  8. #define Maxn 1010
  9.  
  10. struct node
  11. {
  12. int x,y,c,next;
  13. }t[*Maxn*Maxn];int len;
  14.  
  15. int n,m;
  16. int first[Maxn],dis[Maxn],f[Maxn];
  17. bool inq[Maxn];
  18.  
  19. void ins(int x,int y,int c)
  20. {
  21. t[++len].x=x;t[len].y=y;t[len].c=c;
  22. t[len].next=first[x];first[x]=len;
  23. }
  24.  
  25. void spfa(int s)
  26. {
  27. queue<int > q;
  28. while(!q.empty()) q.pop();
  29. q.push(s);
  30. memset(dis,,sizeof(dis));
  31. memset(inq,,sizeof(inq));
  32. dis[s]=;
  33. while(!q.empty())
  34. {
  35. int x=q.front();q.pop();
  36. for(int i=first[x];i;i=t[i].next)
  37. {
  38. int y=t[i].y;
  39. if(dis[y]>dis[x]+t[i].c)
  40. {
  41. dis[y]=dis[x]+t[i].c;
  42. if(!inq[y]) {inq[y]=;q.push(y);}
  43. }
  44. }
  45. inq[x]=;
  46. }
  47. }
  48.  
  49. int ffind(int x)
  50. {
  51. if(f[x]!=-) return f[x];
  52. f[x]=;
  53. for(int i=first[x];i;i=t[i].next) if(dis[x]>dis[t[i].y])
  54. {
  55. f[x]+=ffind(t[i].y);
  56. }
  57. return f[x];
  58. }
  59.  
  60. int main()
  61. {
  62. while()
  63. {
  64. scanf("%d",&n);
  65. if(n==) break;
  66. scanf("%d",&m);
  67. len=;
  68. memset(first,,sizeof(first));
  69. for(int i=;i<=m;i++)
  70. {
  71. int x,y,c;
  72. scanf("%d%d%d",&x,&y,&c);
  73. ins(x,y,c);ins(y,x,c);
  74. }
  75. spfa();
  76. memset(f,-,sizeof(f));
  77. f[]=;
  78. ffind();
  79. printf("%d\n",f[]);
  80. }
  81. return ;
  82. }

uva 10917

2016-03-21 13:49:15

【uva10917】Walk Through the Forest (最短路)的更多相关文章

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

    Jimmy experiences a lot of stress at work these days, especially since his accident made working dif ...

  2. Uva10917 Walk Through the Forest

    题目链接:https://vjudge.net/problem/UVA-10917 题目意思:Jimmy下班回家要闯过一下森林,劳累一天后在森林中散步是非常惬意的事,所以他打算每天沿着一条不同的路径回 ...

  3. UVA-10917 Walk Through the Forest (dijkstra+DP)

    题目大意:n个点,m条边的无向图.一个人从起点到终点按照下面的走法:从A走向B当A到终点的最小距离比B到终点的最小距离大时.问从起点到终点有多少路径方案. 题目分析:先用dijkstra预处理出终点到 ...

  4. UVA - 10917 - Walk Through the Forest(最短路+记忆化搜索)

    Problem    UVA - 10917 - Walk Through the Forest Time Limit: 3000 mSec Problem Description Jimmy exp ...

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

    A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Jav ...

  6. HDU 1142 A Walk Through the Forest(最短路+dfs搜索)

    A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Jav ...

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

    A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Jav ...

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

    A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Jav ...

  9. HDU1142 A Walk Through the Forest(最短路+DAG)

    A Walk Through the Forest Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/O ...

  10. HDU 1142 A Walk Through the Forest (求最短路条数)

    A Walk Through the Forest 题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1142 Description Jimmy exp ...

随机推荐

  1. mvvm框架下页面与ViewModel的各种参数传递方式

    传单个参数的话在xaml用     Command={Binding ViewModel的事件处理名称}    CommandParameter={Binding 要传递的控件名称} ViewMode ...

  2. Base64工具类

    public final class AbBase64 { /** The Constant base64EncodeChars. */ private static final char[] bas ...

  3. Java基础知识强化之网络编程笔记06:TCP之TCP协议发送数据 和 接收数据

    1. TCP协议发送数据 和 接收数据 TCP协议接收数据:• 创建接收端的Socket对象• 监听客户端连接.返回一个对应的Socket对象• 获取输入流,读取数据显示在控制台• 释放资源 TCP协 ...

  4. System Operations on AWS - Lab 7 - CloudFormation

    CloudFormation模板:创建一个VPC(包含Public子网,Private子网,分别在不同的AZ),创建NAT,Bastion Server在Public子网. 1. 修改并运行AWS C ...

  5. 用于做 Android 屏幕自适应的文章资源

    Android Developer : (1) https://developer.android.com/training/multiscreen/index.html (2) https://de ...

  6. jfreechart环形图完美实现

    邮件发送由于不支持js,项目只能在后台生成环形图,用jfreechart完全可以实现,即:RingPlot. 这就拿jfreechart生成的最终效果,依赖jar包jfreechart,如果有任何细节 ...

  7. Exercise DS

    #include <iostream> using namespace std; typedef struct Node { Node *next; int data; }Node, *L ...

  8. Linux 权限基础说明

      1 权限位说明 Linux文件或目录的权限位是由个9个权限位来控制的,每三位为一组,它们分别是文件属主(owner/user)读.写.执行,用户组(Group)的读.写.执行以及(Other)其他 ...

  9. PHP设计模式之:策略模式

    <?phpabstract class Strategy{    public abstract function AlgorithmInterface();} class ConcreteSt ...

  10. HTML5-javascript屏幕旋转事件:onorientationchange

    屏幕旋转事件:onorientationchange 添加屏幕旋转事件侦听,可随时发现屏幕旋转状态(左旋.右旋还是没旋) 判断屏幕是否旋转 function orientationChange() { ...