UVa 10048 Audiophobia

  Problem B: Audiophobia 

Consider yourself lucky! Consider yourself lucky to be still breathing and having fun participating in this contest. But we apprehend that many of your descendants may not have this luxury. For, as you know, we are the dwellers of one of the most polluted cities on earth. Pollution is everywhere, both in the environment and in society and our lack of consciousness is simply aggravating the situation.

However, for the time being, we will consider only one type of pollution ­- the sound pollution. The loudness or intensity level of sound is usually measured in decibels and sound having intensity level 130 decibels or higher is considered painful. The intensity level of normal conversation is 60­65 decibels and that of heavy traffic is 70­80 decibels.

Consider the following city map where the edges refer to streets and the nodes refer to crossings. The integer on each edge is the average intensity level of sound (in decibels) in the corresponding street.

 

To get from crossing A to crossing G you may follow the following path: A­C­F­G. In that case you must be capable of tolerating sound intensity as high as 140 decibels. For the paths A­B­E­GA­B­D­G and A­C­F­D­G you must tolerate respectively 90, 120 and 80 decibels of sound intensity. There are other paths, too. However, it is clear that A­C­F­D­G is the most comfortable path since it does not demand you to tolerate more than 80 decibels.

In this problem, given a city map you are required to determine the minimum sound intensity level you must be able to tolerate in order to get from a given crossing to another.

 

Input 

The input may contain multiple test cases.

The first line of each test case contains three integers $C (\le 100)$$S (\le
1000)$ and $Q (\le 10000)$ where Cindicates the number of crossings (crossings are numbered using distinct integers ranging from 1 to C), Srepresents the number of streets and Q is the number of queries.

Each of the next S lines contains three integers: c1c2 and d indicating that the average sound intensity level on the street connecting the crossings c1 and c2 ( $c_1 \ne c_2$) is d decibels.

Each of the next Q lines contains two integers c1 and c2 ( $c_1 \ne c_2$) asking for the minimum sound intensity level you must be able to tolerate in order to get from crossing c1 to crossing c2.

The input will terminate with three zeros form CS and Q.

 

Output 

For each test case in the input first output the test case number (starting from 1) as shown in the sample output. Then for each query in the input print a line giving the minimum sound intensity level (in decibels) you must be able to tolerate in order to get from the first to the second crossing in the query. If there exists no path between them just print the line ``no path".

Print a blank line between two consecutive test cases.

 

Sample Input 

7 9 3
1 2 50
1 3 60
2 4 120
2 5 90
3 6 50
4 6 80
4 7 70
5 7 40
6 7 140
1 7
2 6
6 2
7 6 3
1 2 50
1 3 60
2 4 120
3 6 50
4 6 80
5 7 40
7 5
1 7
2 4
0 0 0

Sample Output 

Case #1
80
60
60
 
Case #2
40
no path
80

 

 


Miguel Revilla 
2000-12-26

 

给一个无向简单图,边上有权,在任意两点间求一条路径,使得这条路径上权最大的边最小

由于要在任意两点间求路径,且数据很小只有100个点,我用了Floyd思想,

Floyd原来是d[i][j]=min(d[i][j],d[i][k]+d[k][j])

这里改成了d[i][j]=min(d[i][j], max(d[i][k],d[k][j]) )

 

 1 #include<iostream>
 2 #include<algorithm>
 3 #include<cstdio>
 4 #define INF 0x7fffffff
 5 
 6 using namespace std;
 7 
 8 int c,s,q;
 9 int Map[150][150];
10 
11 int main()
12 {
13     int kase=0;
14 
15     while(scanf("%d %d %d",&c,&s,&q)==3&&(c||s||q))
16     {
17         kase++;
18         if(kase>1)
19             puts("");
20         printf("Case #%d\n",kase);
21 
22         for(int i=1;i<=c;i++)
23             for(int j=1;j<=c;j++)
24                 Map[i][j]=INF;
25 
26         int c1,c2,d;
27         for(int i=1;i<=s;i++)
28         {
29             scanf("%d %d %d",&c1,&c2,&d);
30             Map[c1][c2]=Map[c2][c1]=d;
31         }
32 
33         for(int k=1;k<=c;k++)
34             for(int i=1;i<=c;i++)
35                 for(int j=1;j<=c;j++)
36                     Map[i][j]=min(Map[i][j],max(Map[i][k],Map[k][j]));
37 
38         for(int i=1;i<=q;i++)
39         {
40             scanf("%d %d",&c1,&c2);
41             if(Map[c1][c2]==INF)
42                 puts("no path");
43             else
44                 printf("%d\n",Map[c1][c2]);
45         }
46     }
47 
48     return 0;
49 }
[C++]

 

posted @ 2014-02-19 08:14  ~~Snail~~  阅读(272)  评论(0编辑  收藏  举报