zoj 1406 Jungle Roads

题目链接http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=406

解题思路:最小生成树(kruskal 算法 + 优先队列 + 并查集)

  1 /**************************************************************************
  2 user_id: SCNU20102200088
  3 problem_id: zoj 1406
  4 problem_name: Jungle Roads
  5 **************************************************************************/
  6 
  7 #include <algorithm>
  8 #include <iostream>
  9 #include <iterator>
 10 #include <iomanip>
 11 #include <sstream>
 12 #include <fstream>
 13 #include <cstring>
 14 #include <cstdlib>
 15 #include <climits>
 16 #include <bitset>
 17 #include <string>
 18 #include <vector>
 19 #include <cstdio>
 20 #include <cctype>
 21 #include <ctime>
 22 #include <cmath>
 23 #include <queue>
 24 #include <stack>
 25 #include <list>
 26 #include <set>
 27 #include <map>
 28 using namespace std;
 29 
 30 //线段树
 31 #define lson l,m,rt<<1
 32 #define rson m+1,r,rt<<1|1
 33 
 34 //手工扩展栈
 35 #pragma comment(linker,"/STACK:102400000,102400000")
 36 
 37 const double EPS=1e-9;
 38 const double PI=acos(-1.0);
 39 const double E=2.7182818284590452353602874713526;  //自然对数底数
 40 const double R=0.5772156649015328606065120900824;  //欧拉常数:(1+1/2+...+1/n)-ln(n)
 41 
 42 const int x4[]={-1,0,1,0};
 43 const int y4[]={0,1,0,-1};
 44 const int x8[]={-1,-1,0,1,1,1,0,-1};
 45 const int y8[]={0,1,1,1,0,-1,-1,-1};
 46 
 47 typedef long long LL;
 48 
 49 typedef int T;
 50 T max(T a,T b){ return a>b? a:b; }
 51 T min(T a,T b){ return a<b? a:b; }
 52 T gcd(T a,T b){ return b==0? a:gcd(b,a%b); }
 53 T lcm(T a,T b){ return a/gcd(a,b)*b; }
 54 
 55 ///////////////////////////////////////////////////////////////////////////
 56 //Add Code:
 57 int n,s[30];
 58 
 59 struct Node{
 60     int u,v,w;
 61     bool operator <(const Node &a) const{
 62         return w>a.w;
 63     }
 64 }node;
 65 
 66 priority_queue<Node> pq;
 67 
 68 void Union(int x,int y){
 69     s[y]=x;
 70 }
 71 
 72 int Find(int x){
 73     if(s[x]<0) return x;
 74     return s[x]=Find(s[x]);
 75 }
 76 
 77 int Kruskal(){
 78     int ret=0,num=0;
 79     memset(s,-1,sizeof(s));
 80     while(!pq.empty() && num<n-1){
 81         node=pq.top();
 82         pq.pop();
 83         if(Find(node.u)!=Find(node.v)){
 84             Union(Find(node.u),Find(node.v));
 85             ret+=node.w;
 86             num++;
 87         }
 88     }
 89     while(!pq.empty()) pq.pop();
 90     return ret;
 91 }
 92 ///////////////////////////////////////////////////////////////////////////
 93 
 94 int main(){
 95     std::ios::sync_with_stdio(false);
 96     //freopen("in.txt","r",stdin);
 97     //freopen("out.txt","w",stdout);
 98     ///////////////////////////////////////////////////////////////////////
 99     //Add Code:
100     while(cin>>n,n){
101         int k=n-1,t,w;
102         char ch;
103         while(k--){
104             cin>>ch>>t;
105             node.u=ch-'A';
106             while(t--){
107                 cin>>ch>>w;
108                 node.v=ch-'A';
109                 node.w=w;
110                 pq.push(node);
111             }
112         }
113         cout<<Kruskal()<<endl;
114     }
115     ///////////////////////////////////////////////////////////////////////
116     return 0;
117 }
118 
119 /**************************************************************************
120 Testcase:
121 Input:
122 9
123 A 2 B 12 I 25
124 B 3 C 10 H 40 I 8
125 C 2 D 18 G 55
126 D 1 E 44
127 E 2 F 60 G 38
128 F 0
129 G 1 H 35
130 H 1 I 35
131 3
132 A 2 B 10 C 40
133 B 1 C 20
134 0
135 Output:
136 216
137 30
138 **************************************************************************/
原文地址:https://www.cnblogs.com/linqiuwei/p/3135476.html