博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ - 1797 Heavy Transportation
阅读量:5310 次
发布时间:2019-06-14

本文共 2656 字,大约阅读时间需要 8 分钟。

Background 
Hugo Heavy is happy. After the breakdown of the Cargolifter project he can now expand business. But he needs a clever man who tells him whether there really is a way from the place his customer has build his giant steel crane to the place where it is needed on which all streets can carry the weight. 
Fortunately he already has a plan of the city with all streets and bridges and all the allowed weights.Unfortunately he has no idea how to find the the maximum weight capacity in order to tell his customer how heavy the crane may become. But you surely know. 
Problem 
You are given the plan of the city, described by the streets (with weight limits) between the crossings, which are numbered from 1 to n. Your task is to find the maximum weight that can be transported from crossing 1 (Hugo's place) to crossing n (the customer's place). You may assume that there is at least one path. All streets can be travelled in both directions.

Input

The first line contains the number of scenarios (city plans). For each city the number n of street crossings (1 <= n <= 1000) and number m of streets are given on the first line. The following m lines contain triples of integers specifying start and end crossing of the street and the maximum allowed weight, which is positive and not larger than 1000000. There will be at most one street between each pair of crossings.

Output

The output for every scenario begins with a line containing "Scenario #i:", where i is the number of the scenario starting at 1. Then print a single line containing the maximum allowed weight that Hugo can transport to the customer. Terminate the output for the scenario with a blank line.

Sample Input

13 31 2 31 3 42 3 5

Sample Output

Scenario #1:4 这题题意理解很重要,大致意思是给出每条路的载重,求每条路连通且总载重最大时的最小边的值。 (即最小值的最大值,与之相反的是poj-2253 求的是最大值的最小值,建议这两题对比着做更容易理解这个题型) 这题我用的是kruskal求的最大生成树(其实就是把从小到大排序变成从大到小排序了),这题还可以用spfa和dijkstra,这里就不尝试了。 附代码:
1 #include 
2 #include
3 #include
4 #include
5 using namespace std; 6 const int inf = 0x3f3f3f3f; 7 const int M = 1005; 8 struct nod{ 9 int u,v,cost;10 }eg[M*M/2];11 int V,E;12 bool cmp(const nod&a,const nod&b){13 return a.cost>b.cost;14 }15 int rk[M],pre[M];16 void init(int V){17 for(int i=0;i<=V;i++){18 rk[i]=0;19 pre[i]=i;20 }21 }22 int find(int x){23 if(pre[x]==x) {24 return x;25 } else{26 return pre[x]=find(pre[x]);27 }28 }29 void mix(int x,int y){30 x=find(x);31 y=find(y);32 if(x==y) return ;33 if(rk[x]
View Code

 

 

转载于:https://www.cnblogs.com/zmin/p/7421021.html

你可能感兴趣的文章
Node 中异常收集与监控
查看>>
七丶Python字典
查看>>
Excel-基本操作
查看>>
面对问题,如何去分析?(分析套路)
查看>>
Excel-逻辑函数
查看>>
面对问题,如何去分析?(日报问题)
查看>>
数据分析-业务知识
查看>>
nodejs vs python
查看>>
poj-1410 Intersection
查看>>
Java多线程基础(一)
查看>>
TCP粘包拆包问题
查看>>
Java中Runnable和Thread的区别
查看>>
SQL Server中利用正则表达式替换字符串
查看>>
POJ 1015 Jury Compromise(双塔dp)
查看>>
论三星输入法的好坏
查看>>
Linux 终端连接工具 XShell v6.0.01 企业便携版
查看>>
JS写一个简单日历
查看>>
LCA的两种求法
查看>>
Python 发 邮件
查看>>
mysql忘记密码的解决办法
查看>>