POJ 2075 Tangled in Cables(最小生成树 kruscal)

来源:互联网 发布:js 家谱树形图插件 编辑:程序博客网 时间:2024/05/19 06:49
Tangled in Cables
Time Limit: 1000MS Memory Limit: 30000KTotal Submissions: 6727 Accepted: 2629

Description

You are the owner of SmallCableCo and have purchased the franchise rights for a small town. Unfortunately, you lack enough funds to start your business properly and are relying on parts you have found in an old warehouse you bought. Among your finds is a single spool of cable and a lot of connectors. You want to figure out whether you have enough cable to connect every house in town. You have a map of town with the distances for all the paths you may use to run your cable between the houses. You want to calculate the shortest length of cable you must have to connect all of the houses together.

Input

Only one town will be given in an input. 
  • The first line gives the length of cable on the spool as a real number. 
  • The second line contains the number of houses, N 
  • The next N lines give the name of each house's owner. Each name consists of up to 20 characters {a–z,A–Z,0–9} and contains no whitespace or punctuation. 
  • Next line: M, number of paths between houses 
  • next M lines in the form

< house name A > < house name B > < distance > 
Where the two house names match two different names in the list above and the distance is a positive real number. There will not be two paths between the same pair of houses.

Output

The output will consist of a single line. If there is not enough cable to connect all of the houses in the town, output 
Not enough cable 
If there is enough cable, then output 
Need < X > miles of cable 
Print X to the nearest tenth of a mile (0.1).

Sample Input

100.04JonesSmithsHowardsWangs5Jones Smiths 2.0Jones Howards 4.2Jones Wangs 6.7Howards Wangs 4.0Smiths Wangs 10.0

Sample Output

Need 10.2 miles of cable
tips:用map做一个映射即可
#include<iostream>#include<cstring>#include<string>#include<vector>#include<queue>#include<map>#include<algorithm>using namespace std;struct edge{int u,v;double w;friend bool operator <(edge e1,edge e2){return e1.w<e2.w;} };vector<edge>edges;int n,m;map<string,int>mpp;double tot;int f[1111];int find(int x){return f[x]<0?x:f[x]=find(f[x]);}bool merge(int x,int y){int rx=find(x);int ry=find(y);if(rx!=ry){f[rx]+=f[ry];f[ry]=rx;return true;}return false;}double kruscal(){double sum=0;memset(f,-1,sizeof(f));for(int i=0;i<edges.size();i++){edge e=edges[i];if(merge(e.u,e.v)){sum+=e.w;}}return sum;}int main(){cin>>tot>>n;for(int i=1;i<=n;i++){string s;cin>>s;mpp[s]=i;}cin>>m;for(int i=1;i<=m;i++){string s1,s2;double d;cin>>s1>>s2>>d;edges.push_back(edge{mpp[s1],mpp[s2],d});}sort(edges.begin(),edges.end());double t=kruscal();if(t<=tot)cout<<"Need "<<t<<" miles of cable"<<endl;else cout<<"Not enough cable"<<endl;return 0; } 


原创粉丝点击