Heavy Transportation
Time Limit: 3000MS   Memory Limit: 30000K
Total Submissions: 53170   Accepted: 13544

Description

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

1
3 3
1 2 3
1 3 4
2 3 5

Sample Output

Scenario #1:
4 注意题目是和求最短路是有点不同的。
/*审题,这个题是要求从1到n城市最大承载量,而最大承载量就是从城市1到城市n所有通路上的最大承载量,并不是求最短路,
不过,也可以用Dijkstra求解,只不过需要在求最短路上的Dijkstra模板上改改一些而已*/
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cstdio>
using namespace std;
const int maxn = ;
int mp[maxn][maxn],dis[maxn],vis[maxn];
int edge,node;
int num;
void dijkstra(){
for(int i = ; i <= node; i++){
dis[i] = mp[][i];
}
for(int i = ; i < node; i++){
int mn = -,u;
for(int j = ; j <= node; j++){
if(vis[j] == && dis[j] > mn){ //dis[]是为了找到最大承载量。找到没有标记的点。
mn = dis[j];
u = j;
}
}
vis[u] = ;
for(int j = ; j <= node; j++){
if(vis[j] == && dis[j] < min(dis[u],mp[u][j])){ //松弛,由于最大承载量是有限制,需要要选择最小的。
dis[j] = min(dis[u],mp[u][j]);
}
}
} }
int main(){
int T;
num = ;
scanf("%d",&T);
while(T--){
num++;
scanf("%d%d",&node,&edge);
for(int i = ; i <= node; i++){
for(int j = ; j <= node; j++){
mp[i][j] = ; //求最大当然要初始化最小。
}
}
memset(vis,,sizeof(vis));
int m,n,t;
for(int i = ; i < edge; i++){
scanf("%d%d%d",&m,&n,&t);
mp[m][n] = mp[n][m] = t; //此题是无向图中求从1到node的最短路。无向图。
}
dijkstra();
printf("Scenario #%d:\n%d\n\n",num,dis[node]);
}
return ;
}

最新文章

  1. 渗透测试常规思路分析-FREEBUF
  2. 深入浅出WPF开发下载
  3. 字符串匹配算法之SimHash算法
  4. CF Two Buttons (BFS)
  5. APP上架详细流程-2016最新
  6. Centos6.4 mysql安装与配置
  7. CSS布局模型思考
  8. 支持向量机(SVM)理论总结系列.线性可分(附带R程序案例:用体重和心脏重量来预测一只猫的性别)
  9. ArrayList排序算法的源码
  10. js双向绑定和地址传递带来的痛苦解决方案之对象拷贝
  11. Android开发技巧——自定义控件之自定义属性
  12. JSON.stringify 语法实例讲解+easyui data-options属性+expires【申明:来源于网络】
  13. [P3385]【模板】负环 (spfa / bellman-ford)
  14. 转载:abstract的方法是否可同时是static,是否可同时是native,是否可同时是synchronized?
  15. git mergetool 解决冲突的问题
  16. ASP.NET自带对象JSON字符串与实体类的转换
  17. java实现猴子选大王问题(约瑟夫问题)
  18. @Resource 注解
  19. 《机器学习基石》第一周 —— When Can Machine Learn?
  20. linux c编程:信号(四) sigaction

热门文章

  1. 前端vue拖拽
  2. 解决Error:com.intellij.util.indexing.StorageException
  3. UNIX口令破解机
  4. kubernetes 简单yaml文件运行例子deployment
  5. BZOJ2160拉拉队排练——回文自动机
  6. Vue——服务器上部署vue.js
  7. POJ 2112-Optimal Milking-二分答案+二分图匹配
  8. Lambda 动态表达式(排序)
  9. Android 修改 Menu字体颜色
  10. 洛谷P2320鬼谷子的钱袋.