[关闭]
@Chilling 2017-04-21T13:18:15.000000Z 字数 4250 阅读 758

POJ-3463: Sightseeing (最短路次短路及条数)

最短路


Description

Tour operator Your Personal Holiday organises guided bus trips across the Benelux. Every day the bus moves from one city S to another city F. On this way, the tourists in the bus can see the sights alongside the route travelled. Moreover, the bus makes a number of stops (zero or more) at some beautiful cities, where the tourists get out to see the local sights.

Different groups of tourists may have different preferences for the sights they want to see, and thus for the route to be taken from S to F. Therefore, Your Personal Holiday wants to offer its clients a choice from many different routes. As hotels have been booked in advance, the starting city S and the final city F, though, are fixed. Two routes from S to F are considered different if there is at least one road from a city A to a city B which is part of one route, but not of the other route.

There is a restriction on the routes that the tourists may choose from. To leave enough time for the sightseeing at the stops (and to avoid using too much fuel), the bus has to take a short route from S to F. It has to be either a route with minimal distance, or a route which is one distance unit longer than the minimal distance. Indeed, by allowing routes that are one distance unit longer, the tourists may have more choice than by restricting them to exactly the minimal routes. This enhances the impression of a personal holiday.
此处输入图片的描述

For example, for the above road map, there are two minimal routes from S = 1 to F = 5: 1 → 2 → 5 and 1 → 3 → 5, both of length 6. There is one route that is one distance unit longer: 1 → 3 → 4 → 5, of length 7.

Now, given a (partial) road map of the Benelux and two cities S and F, tour operator Your Personal Holiday likes to know how many different routes it can offer to its clients, under the above restriction on the route length.

Input

The first line of the input file contains a single number: the number of test cases to follow. Each test case has the following format:

One line with two integers N and M, separated by a single space, with 2 ≤ N ≤ 1,000 and 1 ≤ M ≤ 10, 000: the number of cities and the number of roads in the road map.

M lines, each with three integers A, B and L, separated by single spaces, with 1 ≤ A, B ≤ N, A ≠ B and 1 ≤ L ≤ 1,000, describing a road from city A to city B with length L.

The roads are unidirectional. Hence, if there is a road from A to B, then there is not necessarily also a road from B to A. There may be different roads from a city A to a city B.

One line with two integers S and F, separated by a single space, with 1 ≤ S, F ≤ N and S ≠ F: the starting city and the final city of the route.

There will be at least one route from S to F.

Output

For every test case in the input file, the output should contain a single number, on a single line: the number of routes of minimal length or one distance unit longer. Test cases are such, that this number is at most .

Sample Input

2
5 8
1 2 3
1 3 2
1 4 5
2 3 1
2 5 3
3 4 2
3 5 4
4 5 3
1 5
5 6
2 3 1
3 2 1
3 1 10
4 5 2
5 2 7
5 2 7
4 1

Sample Output

3
2

题意: t组数据,每组输入点n和边m个数,输入m条边,再输入起点ST和终点EN,求从ST到EN最短路和比最短路长1的路的总条数。


  1. #include<queue>
  2. #include<stdio.h>
  3. #include<string.h>
  4. #define INF 0x3f3f3f3f
  5. using namespace std;
  6. const int maxn=1005;
  7. int n,m;
  8. int ST,EN;
  9. int num,pos[maxn];
  10. int vis[maxn][2];
  11. int cnt[maxn][2],dis[maxn][2];
  12. struct node1
  13. {
  14. int en,val,next;
  15. node1(int en=0,int val=0,int next=0):en(en),val(val),next(next){}
  16. }E[maxn*10];
  17. struct node
  18. {
  19. int id,val;
  20. int flag; //最短/次短
  21. node(int id=0,int val=0,int flag=0):id(id),val(val),flag(flag){}
  22. friend bool operator <(node x,node y)
  23. {
  24. return x.val>y.val;
  25. }
  26. };
  27. void add(int st,int en,int val)
  28. {
  29. E[num]=node1(en,val,pos[st]);
  30. pos[st]=num++;
  31. }
  32. void dij()
  33. {
  34. dis[ST][0]=0;
  35. cnt[ST][0]=1;
  36. priority_queue<node>q;
  37. q.push(node(ST,0,0));
  38. while(!q.empty())
  39. {
  40. node now=q.top();
  41. q.pop();
  42. int val=now.val;
  43. int u=now.id;
  44. int flag=now.flag;
  45. if(vis[u][flag]) continue;
  46. vis[u][flag]=1;
  47. for(int i=pos[u];i!=-1;i=E[i].next)
  48. {
  49. int v=E[i].en;
  50. int newlen=val+E[i].val;
  51. if(newlen<dis[v][0]) //新路径比原最短路更小
  52. {
  53. if(dis[v][0]!=INF) //如果当前点的最短路曾更新过
  54. { //那么不仅更新最短,也要更新次短
  55. dis[v][1]=dis[v][0];
  56. cnt[v][1]=cnt[v][0]; //次短路条数等于原来的最短路条数
  57. q.push(node(v,dis[v][1],1)); //入队,当前点距离更新,之后的也会更新
  58. }
  59. dis[v][0]=newlen; //否则仅更新最短路
  60. cnt[v][0]=cnt[u][flag];//更新最短路条数,最短路条数由u点得到,u点状态由flag标记
  61. q.push(node(v,newlen,0));
  62. }
  63. else if(newlen==dis[v][0])
  64. cnt[v][0]+=cnt[u][flag]; //增加最短路条数
  65. else if(newlen==dis[v][1])
  66. cnt[v][1]+=cnt[u][flag]; //增加次短路条数
  67. else if(newlen<dis[v][1]) //新路径大于最短路,但是小于次短路,更新次短路
  68. {
  69. dis[v][1]=newlen;
  70. cnt[v][1]=cnt[u][flag]; //次短路条数由u点得
  71. q.push(node(v,dis[v][1],1));
  72. }
  73. }
  74. }
  75. }
  76. void init()
  77. {
  78. num=0;
  79. memset(cnt,0,sizeof(cnt));
  80. memset(vis,0,sizeof(vis));
  81. memset(E,0,sizeof(E));
  82. memset(pos,-1,sizeof(pos));
  83. memset(dis,0x3f,sizeof(dis));
  84. }
  85. int main()
  86. {
  87. int t;
  88. int x,y,z;
  89. scanf("%d",&t);
  90. while(t--)
  91. {
  92. init();
  93. scanf("%d%d",&n,&m);
  94. while(m--)
  95. {
  96. scanf("%d%d%d",&x,&y,&z);
  97. add(x,y,z);
  98. }
  99. scanf("%d%d",&ST,&EN);
  100. dij();
  101. int ans=dis[EN][0]+1==dis[EN][1]?cnt[EN][0]+cnt[EN][1]:cnt[EN][0];
  102. printf("%d\n",ans);
  103. }
  104. return 0;
  105. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注