Til the Cows Come Home

Til the Cows Come Home

Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 131072/65536K (Java/Other)
Total Submission(s) : 64   Accepted Submission(s) : 41
Problem 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
5 5
1 2 20
2 3 30
3 4 20
4 5 20
1 5 100
 

 

Sample Output
90
 

 

Source
PKU
 1 #include<stdio.h>
 2 #include<string.h>
 3 #define INF 999999
 4 int Map[1006][1006];
 5 void SPFA(int s,int m,int *Dis)      
 6 {
 7     int i,k,Start=0,End=1;
 8     int Sign[10086],Visit[10086];
 9     Sign[Start] = s;
10     Dis[s] = 0;
11     while(Start<End)
12     {
13         k=Sign[Start++];
14         Visit[k]=0;
15         for(i=1;i<=m;i++)
16         {
17             if(Map[k][i]>0&&Dis[i]>Map[k][i]+Dis[k])
18             {
19                 Dis[i]=Dis[k]+Map[k][i];
20                 if(!Visit[i])
21                 {
22                     Sign[End++]=i;
23                     Visit[i]=1;
24                 }
25             }
26         }
27     }
28 }
29 int main()
30 {
31     int i,T,N,a,b,c,Dis[10086];
32     while(scanf("%d%d",&T,&N)!=EOF)
33     {
34         memset(Map,-1,sizeof(Map));
35         memset(Dis,INF,sizeof(Dis));
36         for(i=0;i<T;i++)
37         {
38             scanf("%d%d%d",&a,&b,&c);
39             if(Map[b][a]!=-1)  
40             {
41                 Map[b][a]=c<Map[a][b]?c:Map[a][b];
42                 Map[a][b]=Map[b][a];
43             }
44             else
45             {
46                 Map[a][b]=c;
47                 Map[b][a]=c;
48             }
49         }
50         Dis[1]=0;
51         SPFA(1,N,Dis);
52         printf("%d\n",Dis[N]);
53     }
54 }
View Code

 

posted @ 2014-08-22 14:04  Wurq  阅读(118)  评论(0编辑  收藏  举报