1. 程式人生 > >B - 暢通工程再續

B - 暢通工程再續

暢通工程再續 span while queue microsoft color visit 聽說 ane

相信大家都聽說一個“百島湖”的地方吧,百島湖的居民生活在不同的小島中,當他們想去其他的小島時都要通過劃小船來實現。現在政府決定大力發展百島湖,發展首先要解決的問題當然是交通問題,政府決定實現百島湖的全暢通!經過考察小組RPRush對百島湖的情況充分了解後,決定在符合條件的小島間建上橋,所謂符合條件,就是2個小島之間的距離不能小於10米,也不能大於1000米。當然,為了節省資金,只要求實現任意2個小島之間有路通即可。其中橋的價格為 100元/米。

Input輸入包括多組數據。輸入首先包括一個整數T(T <= 200),代表有T組數據。
每組數據首先是一個整數C(C <= 100),代表小島的個數,接下來是C組坐標,代表每個小島的坐標,這些坐標都是 0 <= x, y <= 1000的整數。


Output每組輸入數據輸出一行,代表建橋的最小花費,結果保留一位小數。如果無法實現工程以達到全部暢通,輸出”oh!”.Sample Input

2
2
10 10
20 20
3
1 1
2 2
1000 1000

Sample Output

1414.2
oh!

解題思路:還是最小生成樹的問題,不過我的代碼還是太長了,過段時間優化一下;

  1 #include <iostream>
  2 #include <queue>
  3 #include <string.h>
  4 #include <stdio.h>
  5 #include <math.h>
  6
using namespace std; 7 8 const int MAX = 100 + 20; 9 int n; 10 int visit[MAX]; 11 12 struct S 13 { 14 double x,y; 15 };S dao[MAX]; 16 17 struct T 18 { 19 int a,b; 20 double len; 21 }; 22 23 struct cmp 24 { 25 bool operator() (T a,T b) 26 { 27 return
a.len > b.len; 28 } 29 }; 30 31 double JS(int i,int j) 32 { 33 return sqrt( (dao[i].x-dao[j].x)*(dao[i].x-dao[j].x) +(dao[i].y-dao[j].y)*(dao[i].y-dao[j].y) ); 34 } 35 36 int Find(int x) 37 { 38 if(x = visit[x]) 39 return x; 40 else 41 return visit[x] = Find(visit[x]); 42 } 43 44 int mix(int x,int y) 45 { 46 int TT = 0; 47 int Tx = Find(x); 48 int Ty = Find(y); 49 if(Tx!=Ty) 50 { 51 visit[Tx] = Ty; 52 TT = 1; 53 } 54 return TT; 55 56 } 57 58 59 int main() 60 { 61 int N; 62 cin>>N; 63 while(N--) 64 { 65 priority_queue<T,vector<T>,cmp>P; 66 cin>>n; 67 for(int i =1;i<=n;i++) 68 visit[i] = i; 69 70 71 for(int i = 1;i <= n;i++) 72 cin>>dao[i].x>>dao[i].y; 73 74 T temp; 75 for(int i = 1;i <n;i++) 76 for(int j = i+1;j<=n;j++) 77 { 78 temp.a = i;temp.b = j; 79 temp.len = JS(i,j); 80 if(temp.len >=10&&temp.len<=1000) 81 P.push(temp); 82 } 83 84 double sum = 0; 85 while(!P.empty()) 86 { 87 temp = P.top(); 88 P.pop(); 89 if( mix(temp.a,temp.b)) 90 sum+=temp.len; 91 } 92 93 int ti = 1; 94 int TTT = Find(1); 95 for(int i = 2;i <=n;i++) 96 { 97 if(Find(i)!=TTT) 98 ti++; 99 } 100 101 if(ti == 1) 102 printf("%.1lf\n",sum*100); 103 else 104 cout<<"oh!"<<endl; 105 } 106 107 108 return 0; 109 }

B - 暢通工程再續