您的位置:首页 > 编程语言 > Go语言

(beginer) 最小生成树 UVA 544 Heavy Cargo

2014-02-08 09:55 302 查看

  Heavy
Cargo 
Big Johnsson Trucks Inc. is a company specialized in manufacturing
big trucks. Their latest model, the Godzilla V12, is so big that the
amount of cargo you can transport with it is never limited by the truck itself.
It is only limited by the weight restrictions that apply for the roads along the
path you want to drive.

Given start and destination city, your job is to determine the maximum
load of the Godzilla V12 so that there still exists a path between the
two specified cities.

Input 

The input file will contain one or more test cases. The first line of each
test case will contain two integers: the number of cities n (

) and the number of road
segments r (

)
making up the street network.
Then r lines will follow, each one describing one road segment by
naming the two cities connected by the segment and giving the weight limit for
trucks that use this segment. Names are not longer than 30 characters and do not
contain white-space characters. Weight limits are integers in the range 0 -
10000. Roads can always be travelled in both directions.

The last line of the test case contains two city names: start and
destination.

Input will be terminated by two values of 0 for n and r.

Output 

For each test case, print three lines:
a line saying ``Scenario #x" where x is the number of
the test case

a line saying ``y tons" where y is the maximum
possible load

a blank line

Sample
Input 

4 3
Karlsruhe Stuttgart 100
Stuttgart Ulm 80
Ulm Muenchen 120
Karlsruhe Muenchen
5 5
Karlsruhe Stuttgart 100
Stuttgart Ulm 80
Ulm Muenchen 120
Karlsruhe Hamburg 220
Hamburg Muenchen 170
Muenchen Karlsruhe
0 0


Sample
Output 

Scenario #1
80 tons

Scenario #2
170 tons


题意:给出起点和终点,找出一条路能使货车在限制条件下容量最大。
思路:一开始图没有边,然后我们将边从大到小进行排序,然后从大到小进行加边,加完后,dfs一下,找到路径中容量限制最小的就是答案。
代码:
#include<iostream>
#include<cstdio>
#include<string>
#include<string.h>
#include<cstring>
#include<map>
#include<algorithm>
#include<vector>
using namespace std;
const int maxn = 200+10;
const int maxm = 19910;
const int inf = 1e9;
int n , m , s , t , size , ans;
map<string,int> cityno;
int p[maxn];

int find(int x)
{
if (x==p[x]) return x;
return p[x] = find(p[x]);
}

struct Edge
{
Edge(int uu,int vv,int ww)
:u(uu) , v(vv) , w(ww) { }
Edge() { }
int u , v;
int w;
}edge[maxm];

inline bool operator < (const Edge&e1,const Edge&e2)
{
return e1.w > e2.w;
}

vector<Edge> G[maxn];

void input()
{
cityno.clear();
string str;
char buffer[50];
int u , v , w;
size = 0;
for (int i = 0 ; i < m ; ++i)
{
scanf("%s",buffer); str = buffer;
if (cityno.count(str)) u = cityno[str];
else u = cityno[str] = ++size;
scanf("%s",buffer); str = buffer;
if (cityno.count(str)) v = cityno[str];
else v = cityno[str] = ++size;
scanf("%d",&w);
edge[i] = Edge(u,v,w);
}
scanf("%s",buffer); str = buffer;
if (cityno.count(str)) s = cityno[str];
else s = cityno[str] = ++size;
scanf("%s",buffer); str= buffer;
if (cityno.count(str)) t = cityno[str];
else t = cityno[str] = ++size;
}

bool dfs(int u , int fa)
{
if (u==t) return true;
for (int i = 0 ; i < G[u].size() ; ++i)
{
int v = G[u][i].v , w = G[u][i].w;
if (v==fa) continue;
if (dfs(v,u)) { ans = min(w,ans); return true; }
}
return false;
}

void solve()
{
for (int i = 1 ; i <= n ; ++i) G[i].clear() , p[i] = i;
sort(edge,edge+m);
for (int i = 0 ; i < m ; ++i)
{
int u = find(edge[i].u);
int v = find(edge[i].v);
if (u==v) continue;
p[u] = v;
G[u].push_back(Edge(u,v,edge[i].w));
G[v].push_back(Edge(v,u,edge[i].w));
}
ans = inf;
dfs(s,-1);
printf("%d tons\n\n",ans);
}

int main()
{
int k = 0;
while (scanf("%d%d",&n,&m)==2,n+m)
{
input();
++k;
printf("Scenario #%d\n",k);
solve();
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: