Problem B: Audiophobia |
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 6065 decibels and that of heavy traffic is 7080 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: ACFG. In that case you must be capable of tolerating sound intensity as high as 140 decibels. For the paths ABEG, ABDG and ACFDG you must tolerate respectively 90, 120 and 80 decibels of sound intensity. There are other paths, too. However, it is clear thatACFDG 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.
The input may contain multiple test cases.
The first line of each test case contains three integers , and 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: c1, c2 and d indicating that the average sound intensity level on the street connecting the crossings c1 and c2 ( ) is d decibels.
Each of the next Q lines contains two integers c1 and c2 ( ) 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 C, S and Q.
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.
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
Case #1 80 60 60 Case #2 40 no path 80
#include
#include
#define Max(a,b) (a > b ? a : b)
using namespace std;
const int maxn = 105;
int dp[maxn][maxn],d[maxn][maxn],p[maxn][maxn];
int C,R,Q;
void floyd()
{
for(int k = 1; k <= C; k++)
{
for(int i = 1; i <= C; i++)
{
for(int j = 1; j <= C; j++)
{
if(d[i][k] != -1 && d[k][j] != -1)
{
int temp = Max(d[i][k],d[k][j]);
if(d[i][j] == -1 || d[i][j] > temp) d[i][j] = temp;
}
}
}
}
}
int main()
{
int T = 0;
while(scanf("%d%d%d",&C,&R,&Q) && C && R && Q)
{
int a,b,c;
for(int i = 1; i <= C; i++)
{
for(int j = 1; j <= C; j++)
{
if(i == j)
{
d[i][j] = 0;
}
else d[i][j] = -1;
}
}
memset(p,0,sizeof(p));
for(int i = 1; i <= R; i++)
{
scanf("%d%d%d",&a,&b,&c);
d[a][b] =d[b][a] = c;
}
floyd();
if(T++) printf("\n");
printf("Case #%d\n",T);
for(int i = 1; i <= Q; i++)
{
scanf("%d%d",&a,&b);
if(d[a][b] == -1) printf("no path\n");
else printf("%d\n",d[a][b]);
}
}
return 0;
}