个人心得:这在一定途径上完成查询方面还是很吃力,得多锻炼空间能力,不能再每次都看到就后退,要全力应对,

那怕被虐的不要不要的。

这题主要是求俩个端点中所有路径中最大构成的集合中最小的数值,其实开始思想已经到触及到了这一块,

就想着从一直衍生每次都是max更新,但最终点那里还是卡了一下,还有自己的算法很容易就被突兀的途径给打乱了。

Floyd算法挺不错的,进行一点点的改变就好了,他就是保存每个端点中的最大值的最小值,你想呀,你如果到一个端点,其实在

延伸的时候就已经得到了这条途径的最大值了,比如5端点,你可以从1-3,3-5,则你判断的时候就只要将1-3端点的最大值和3-5端点

的值进行对比就得到了,此时再与5端点所存在的最大值比较就好了

核心算法就是

 for(int k=;k<=x;k++)
for(int i=;i<=x;i++)
for(int j=;j<=x;j++)
if(decibel[i][k]!=inf&&decibel[k][j]!=inf)
decibel[i][j]=min(decibel[i][j],max(decibel[i][k],decibel[k][j]));

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

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

 #include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<iomanip>
#include<algorithm>
using namespace std;
const long long inf=;
int x,y,z;;
int decibel[][];
void init()
{
for(int i=;i<=x;i++)
for(int j=;j<=x;j++)
if(i==j) decibel[i][j]=;
else decibel[i][j]=inf; }
int main()
{
int flag=;
while(cin>>x>>y>>z)
{ if(!x&&!y&&!z) break;
init();
for(int i=;i<=y;i++)
{
int m,n,q;
scanf("%d%d%d",&m,&n,&q);
if(decibel[m][n]>q)
decibel[m][n]=decibel[n][m]=q; }
if(flag>) cout<<endl;
for(int k=;k<=x;k++)
for(int i=;i<=x;i++)
for(int j=;j<=x;j++)
if(decibel[i][k]!=inf&&decibel[k][j]!=inf)
decibel[i][j]=min(decibel[i][j],max(decibel[i][k],decibel[k][j]));
cout<<"Case #"<<flag++<<endl;
for(int i=;i<=z;i++)
{
int m,n;
scanf("%d%d",&m,&n);
if(decibel[m][n]!=inf)
cout<<decibel[m][n]<<endl;
else
cout<<"no path"<<endl; }
}
return ;
}

最新文章

  1. Oracle连接odbc数据源
  2. ASP.NET SignalR 高可用设计
  3. 物料主数据MRP4中的独立/集中
  4. MFC中文件的查找、创建、打开、读写等
  5. Spring中depends-on的作用是什么?
  6. logstash配合filebeat监控tomcat日志
  7. boost库中thread多线程详解2——mutex与lock
  8. linux命令之crontab详解
  9. AWS Organizations
  10. 2017 国庆湖南 Day6
  11. Spring MVC流程
  12. Qt代码
  13. 【转载】ARCHIVE_LAG_TARGET参数的作用(定时切换redo)
  14. fillder--信息面板展示serverIP
  15. 第n+1次考试
  16. JDK安装和环境变量配置-成功经验
  17. HTML实现文件拖动上传
  18. css常用属性总结:文本属性中的text-indent
  19. Delphi 正则表达式语法(3): 匹配范围
  20. Maven的学习资料收集--(二)安装m2eclipse插件

热门文章

  1. Loadrunder之脚本篇——参数化方法
  2. 单口双线PC连接转换器 手机电脑耳机转接线
  3. imx6qsbd lvds dtc
  4. VoLTE的前世今生...说清楚VoIP、VoLTE、CSFB、VoWiFi、SIP、IMS那些事...
  5. java 跨数据库导入大数据
  6. linux上安装程序出现的问题汇总
  7. INSPIRED启示录 读书笔记 - 第31章 苹果公司给我的启示
  8. INSPIRED启示录 读书笔记 - 第9章 产品副经理
  9. ResourceBundle和properties 读取配置文件区别
  10. JMeter学习(十二)JMeter学习参数化User Defined Variables与User Parameters