UVA - 10048 Audiophobia (Floyd算法)

UVA - 10048 Audiophobia 

----------------------------------------------------------------------------------

Consider yourself lucky! Consider yourself lucky to be still breathing and having fun participating inthis contest. But we apprehend that many of your descendants may not have this luxury. For, as youknow, we are the dwellers of one of the most polluted cities on earth. Pollution is everywhere, both inthe 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. Theloudness or intensity level of sound is usually measured in decibels and sound having intensity level 130decibels or higher is considered painful. The intensity level of normal conversation is 6065 decibels andthat 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: A-C-F-G. In that caseyou must be capable of tolerating sound intensity as high as 140 decibels. For the paths A-B-E-G,A-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 sinceit 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 levelyou 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(≤ 100), S(≤ 1000) and Q(≤ 10000) whereC indicates the number of crossings (crossings are numbered using distinct integers ranging from 1 toC), S represents 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 soundintensity level on the street connecting the crossings c1 and c2 (c1 ̸= c2) is d decibels.

Each of the next Q lines contains two integers c1 and c2 (c1 ̸= c2) asking for the minimum soundintensity 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.

Output

For each test case in the input first output the test case number (starting from 1) as shown in thesample 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 thequery. If there exists no path between them just print the line “no path”.

Print a blank line between two consecutive test cases.


原题链接:https://cn.vjudge.net/problem/UVA-10048

AC 代码

#include <cstdio>
#include <cstring>
#include <iostream>
using namespace std;
int n,m,t,Case=1,pd[110][110];
bool ff=1;
void init()
{
    if(ff) ff=0;
    else printf("\n");
    for(int i=1;i<=n;i++)
        for(int j=1;j<=n;j++)
            pd[i][j]=10010;
    for(int i=0;i<m;i++)
    {
        int x,y,z;
        scanf("%d%d%d",&x,&y,&z);
        pd[x][y]=pd[y][x]=z;
    }
}

void Floyd()
{
    for(int k=1;k<=n;k++)
        for(int i=1;i<=n;i++)
            for(int j=1;j<=n;j++)
            {
                if(pd[i][k]==10010||pd[k][j]==10010)continue;
                pd[i][j]=min(pd[i][j],max(pd[i][k],pd[k][j]));
            }
}

void prin()
{
    printf("Case #%d\n",Case++);
    for(int i=0;i<t;i++)
    {
        int x,y;
        scanf("%d%d",&x,&y);
        if(pd[x][y]!=10010) printf("%d\n",pd[x][y]);
        else printf("no path\n");
    }
}

int main()
{

    while(scanf("%d%d%d",&n,&m,&t)!=EOF)
    {
        if(n==0&&m==0&&t==0) break;
        init();
        Floyd();
        prin();
    }
    return 0;
}



猜你喜欢

转载自blog.csdn.net/j1nab1n9/article/details/79322648