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.
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.0
4
Jones
Smiths
Howards
Wangs
5
Jones Smiths 2.0
Jones Howards 4.2
Jones Wangs 6.7
Howards Wangs 4.0
Smiths Wangs 10.0
Sample Output
Need 10.2 miles of cable
ac代码:
#include<stdio.h> #include<string.h> #include<math.h> #include<iostream> #include<algorithm> #define MAXN 1010 #define INF 0x7ffffffff #define max(a,b) a>b?a:b #define min(a,b) a>b?b:a using namespace std; char s[MAXN][30]; double pri[MAXN][MAXN]; char s1[MAXN]; int v[MAXN]; double dis[MAXN]; double mi,sum; int n; int check() { int i; int k; for(i=1;i<=n;i++) { if(strcmp(s[i],s1)==0) { k=i; break; } } return k; } void prime() { memset(v,0,sizeof(v)); v[1]=1; int i,j,k; for(i=1;i<=n;i++) { dis[i]=pri[1][i]; } sum=0; for(i=0;i<n;i++) { mi=INF; for(j=1;j<=n;j++) { if(v[j]==0&&dis[j]<mi) { mi=dis[j]; k=j; } } if(mi==INF) break; sum+=mi; v[k]=1; for(j=1;j<=n;j++) { if(v[j]==0) dis[j]=min(dis[j],pri[k][j]); } } } int main() { double M,c; int i,j,m,a,b; char ss[MAXN]; while(scanf("%lf",&M)!=EOF) { scanf("%d",&n); for(i=1;i<=n;i++) { scanf("%s",ss); strcpy(s[i],ss); } for(i=1;i<=n;i++) for(j=1;j<=n;j++) pri[i][j]=INF; scanf("%d",&m); for(i=0;i<m;i++) { scanf("%s",s1); a=check(); scanf("%s",s1); b=check(); scanf("%lf",&c); if(pri[a][b]>c) pri[a][b]=pri[b][a]=c; } prime(); if(sum>M) printf("Not enough cable\n"); else printf("Need %.1lf miles of cable\n",sum); } return 0; }