zoukankan      html  css  js  c++  java
  • UVA10048 Audiophobia[Floyd变形]

    UVA - 10048

    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 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: 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-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 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(≤ 100), S(≤ 1000) and Q(≤ 10000) where

    C indicates the number of crossings (crossings are numbered using distinct integers ranging from 1 to C), 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 sound intensity 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 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. 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

    793
    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 17
    26
    62 763
    1 2 50 1 3 60 2 4 120 3 6 50 4 6 80 5 7 40 75
    17
    24 000

    Sample Output

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

    题意:求图上两点间最大权值最小的路径,输出最大权值最小

    应该可以用最小生成树+LCA
    然而本题n很小,直接floyd变形就行了
    PS:白书上讲错了

    //
    //  main.cpp
    //  uva10048
    //
    //  Created by Candy on 27/10/2016.
    //  Copyright © 2016 Candy. All rights reserved.
    //
    
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <cmath>
    #include <queue>
    using namespace std;
    const int N=105,M=1005,INF=1e9;
    inline int read(){
        char c=getchar();int x=0,f=1;
        while(c<'0'||c>'9'){if(c=='-')f=-1; c=getchar();}
        while(c>='0'&&c<='9'){x=x*10+c-'0'; c=getchar();}
        return x*f;
    }
    int n,m,q,g[N][N],u,v;
    int d[N][N];
    void floyd(){
        for(int i=1;i<=n;i++)
            for(int j=1;j<=n;j++) if(i!=j)
                d[i][j]=g[i][j]?g[i][j]:INF;
        for(int k=1;k<=n;k++)
            for(int i=1;i<=n;i++)
                for(int j=1;j<=n;j++)
                    d[i][j]=min(d[i][j],max(d[i][k],d[k][j]));
    }
    int main(int argc, const char * argv[]){
        int cas=0;
        while(true){
            n=read();m=read();q=read();
            if(!n&&!m&&!q) break;
            if(cas) putchar('
    ');
            printf("Case #%d
    ",++cas);
            memset(g,0,sizeof(g));
            memset(d,0,sizeof(d));
            for(int i=1;i<=m;i++){u=read();v=read();g[u][v]=g[v][u]=read();}
            floyd();
            for(int i=1;i<=q;i++){
                u=read();v=read();
                if(d[u][v]==INF) puts("no path");
                else printf("%d
    ",d[u][v]);
            }
        }
        
        return 0;
    }
    
    
    





  • 相关阅读:
    iOS模拟器实现测试3Dtouch
    mac命令行基础
    PYTHON --工作中应用
    游标 cursor 分批更新表记录&&while
    shell vim 文件查找与替换
    文件上传及下载
    python项目中从接口获取数据并存入本地数据库
    日月光华-Numpy
    获取所有时间区间,SqlServer 获取本周、本月、本季、本年的第一天和最后一天
    使用python,Excel中横坐标数字和字母相互转换
  • 原文地址:https://www.cnblogs.com/candy99/p/6006221.html
Copyright © 2011-2022 走看看