Ultraviolet A 10048-audiophobia (Floyd, Kruskal)

Source: Internet
Author: User

Link:

Http://uva.onlinejudge.org/index.php? Option = com_onlinejudge & Itemid = 8 & category = 24 & page = show_problem & problem = 989

Question:

Problem B: audiophobia


Consider yourself lucky! Consider yourself lucky to be still breathing and having fun participates in this contest. But we apprehend that amount 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 inDecibelsAnd 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 crossingATo crossingGYou may follow the following path:Acfg. In that case you must be capable of tolerating sound intensity as high
As 140 decibels. For the pathsAbeg,AbdgAndActpdYou must tolerate respectively 90,120 and 80 decibels of sound intensity. There are other paths, too. However, it is clear thatActpdIs
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 in multiple test cases.

The first line of each test case contains three integers, and whereCIndicates
The number of crossings (crossings are numbered using distinct integers ranging from 1C),SRepresents the number of streets andQIs the number of queries.

Each of the nextSLines contains three integers:C1,C2 andDIndicating that the average sound intensity level on the street connecting the crossingsC1 andC2 ()
IsDDecibels.

Each of the nextQLines contains two integersC1 andC2 ()
Asking for the minimum sound intensity level you must be able to tolerate in order to get from crossingC1 to crossingC2.

The input will terminate with three zeros formC,SAndQ.

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 31 2 501 3 602 4 1202 5 903 6 504 6 804 7 705 7 406 7 1401 72 66 27 6 31 2 501 3 602 4 1203 6 504 6 805 7 407 51 72 40 0 0
Sample output
Case #1806060 Case #240no path80

Question:

Find a path from point A to point B so that the maximum noise value of all paths on this path is the smallest. This noise value is required.


Analysis and Summary:

Floyd is used to find out the minimum length of all paths. You only need to slightly deform it to obtain the answer.

In addition to this method, you can also use the Kruskal algorithm to add one edge to the tree by following the steps of the Kruskal algorithm, determine whether all the start and end points to be asked are connected. Once connected, the maximum value in the path is the weight of the edge currently added, because the added edge is added in ascending order.


Code:

1. Kruskal

#include<cstdio>#include<cstring>#include<algorithm>#define N 1005using namespace std;int n,m,Q, f[N],rank[N],ans[N*10];bool vis[N*10];struct Edge{    int u,v,val;    friend bool operator<(const Edge&a,const Edge&b){        return a.val < b.val;    }}arr[N];struct Query{    int id, u, v;}q[N*10];inline void init(){    for(int i=0; i<N; ++i)        f[i]=i,rank[i]=0;}int find(int x){    int i,j=x;    while(j!=f[j]) j=f[j];    while(x!=j){        i=f[x]; f[x]=j; x=i;    }    return j;}bool Union(int x, int y){    int a=find(x), b=find(y);    if(a==b)return false;    if(rank[a]>rank[b])        f[b]=a;    else{        if(rank[a]==rank[b])            ++rank[b];        f[a]=b;    }    return true;}    int main(){    int a,b,c,cas=1;    while(~scanf("%d%d%d",&n,&m,&Q)){        if(!n&&!m&&!Q) break;        for(int i=0; i<m; ++i){            scanf("%d%d%d",&a,&b,&c);            arr[i].u=a, arr[i].v=b, arr[i].val=c;        }        for(int i=0; i<Q; ++i){            scanf("%d%d",&a,&b);            q[i].id=i, q[i].u=a, q[i].v=b;        }        init();        memset(vis, 0, sizeof(vis));        memset(ans, -1, sizeof(ans));        sort(arr,arr+m);        for(int i=0; i<m; ++i){            if(Union(arr[i].u,arr[i].v)){        for(int j=0; j<Q; ++j)if(!vis[j]){            int a=find(q[j].u), b=find(q[j].v);            if(a==b){                        vis[j] = true;                        ans[j] = arr[i].val;            }            }            }        }        if(cas!=1) printf("\n");        printf("Case #%d\n", cas++);        for(int i=0; i<Q; ++i){            if(ans[i]==-1) printf("no path\n");            else printf("%d\n", ans[i]);        }    }    return 0;}

2. Floyd

#include<cstdio>  #include<cstring>  #include<algorithm>  const int N = 105;const int INF = 1000000000;using namespace std;int d[N][N], n, m, Q;inline void read_graph(){    for(int i=1; i<N; ++i){        d[i][i] = INF;         for(int j=i+1; j<N; ++j)            d[i][j]=d[j][i]=INF;    }    int a,b,c;    for(int i=0; i<m; ++i){        scanf("%d%d%d",&a,&b,&c);        d[a][b]=d[b][a]=c;    }}inline void Floyd(){    for(int k=1; k<=n; ++k){        for(int i=1; i<=n; ++i){            for(int j=1; j<=n; ++j){                int tmp = max(d[i][k], d[k][j]);                d[i][j] = min(d[i][j], tmp);            }        }    }}inline void output(){    int u,v;    for(int i=0; i<Q; ++i){        scanf("%d%d",&u,&v);        if(d[u][v]!=INF) printf("%d\n",d[u][v]);        else printf("no path\n");    }}int main(){    int a,b,c,cas=1;    while(~scanf("%d%d%d",&n,&m,&Q)){        if(!n&&!m&&!Q) break;        read_graph();        Floyd();        if(cas!=1) puts("");        printf("Case #%d\n",cas++);        output();    }    return 0;}

-- The meaning of life is to give it meaning.

Original Http://blog.csdn.net/shuangde800 , By d_double (reprinted, please mark)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.