Til the Cows Come Home

小灰灰 2022-06-11 07:55 221阅读 0赞

Til the Cows Come Home














Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 55966   Accepted: 18983

Description

Bessie is out in the field and wants to get back to the barn to get as much sleep as possible before Farmer John wakes her for the morning milking. Bessie needs her beauty sleep, so she wants to get back as quickly as possible.

Farmer John’s field has N (2 <= N <= 1000) landmarks in it, uniquely numbered 1..N. Landmark 1 is the barn; the apple tree grove in which Bessie stands all day is landmark N. Cows travel in the field using T (1 <= T <= 2000) bidirectional cow-trails of various lengths between the landmarks. Bessie is not confident of her navigation ability, so she always stays on a trail from its start to its end once she starts it.

Given the trails between the landmarks, determine the minimum distance Bessie must walk to get back to the barn. It is guaranteed that some such route exists.

Input

* Line 1: Two integers: T and N

* Lines 2..T+1: Each line describes a trail as three space-separated integers. The first two integers are the landmarks between which the trail travels. The third integer is the length of the trail, range 1..100.

Output

* Line 1: A single integer, the minimum distance that Bessie must travel to get from landmark N to landmark 1.

Sample Input

  1. 5 5
  2. 1 2 20
  3. 2 3 30
  4. 3 4 20
  5. 4 5 20
  6. 1 5 100

Sample Output

  1. 90
  2. #include <iostream>
  3. #include <cstdio>
  4. #include <cstring>
  5. #include <algorithm>
  6. #define N 2010
  7. #define MAX 99999999
  8. using namespace std ;
  9. struct node
  10. {
  11. int a,b,w;
  12. } f[N];
  13. int n,m;
  14. void bell()
  15. {
  16. int i,j;
  17. int d[N];
  18. for(int i =1 ; i<=n; i++)
  19. d[i]=MAX;
  20. d[1]=0;
  21. for(i=1; i<n; i++)
  22. {
  23. for(j=1; j<=m; j++)
  24. {
  25. if(d[f[j].b]>d[f[j].a]+f[j].w)
  26. d[f[j].b]= d[f[j].a]+f[j].w;
  27. /*一般是只要这一个判断就可以了的,但是这道题会有重边,比如代码后面的样例,
  28. 所以还要加上下面这个判断条件,因为这个可能路径更短*/
  29. if(d[f[j].a]>d[f[j].b]+f[j].w)
  30. d[f[j].a]= d[f[j].b]+f[j].w;
  31. }
  32. }
  33. printf("%d\n",d[n]);
  34. }
  35. int main()
  36. {
  37. int i,a,b,c;
  38. while(cin>>m>>n)
  39. {
  40. for(int i =1; i<=m; i++)
  41. {
  42. cin>>a>>b>>c;
  43. f[i].a=a;
  44. f[i].b=b;
  45. f[i].w=c;
  46. }
  47. bell();
  48. }
  49. return 0 ;
  50. }
  51. /*
  52. 注意是先输入边然后再输入点的
  53. 6 5
  54. 1 2 20
  55. 2 3 30
  56. 3 4 20
  57. 4 5 20
  58. 1 5 100
  59. 2 1 10
  60. 答案应该是80
  61. */

发表评论

表情:
评论列表 (有 0 条评论,221人围观)

还没有评论,来说两句吧...

相关阅读