zoukankan      html  css  js  c++  java
  • hdu1301 Jungle Roads 最小生成树

    The Head Elder of the tropical island of Lagrishan has a problem. A burst of foreign aid money was spent on extra roads between villages some years ago. But the jungle overtakes roads relentlessly, so the large road network is too expensive to maintain. The Council of Elders must choose to stop maintaining some roads. The map above on the left shows all the roads in use now and the cost in aacms per month to maintain them. Of course there needs to be some way to get between all the villages on maintained roads, even if the route is not as short as before. The Chief Elder would like to tell the Council of Elders what would be the smallest amount they could spend in aacms per month to maintain roads that would connect all the villages. The villages are labeled A through I in the maps above. The map on the right shows the roads that could be maintained most cheaply, for 216 aacms per month. Your task is to write a program that will solve such problems. 

    The input consists of one to 100 data sets, followed by a final line containing only 0. Each data set starts with a line containing only a number n, which is the number of villages, 1 < n < 27, and the villages are labeled with the first n letters of the alphabet, capitalized. Each data set is completed with n-1 lines that start with village labels in alphabetical order. There is no line for the last village. Each line for a village starts with the village label followed by a number, k, of roads from this village to villages with labels later in the alphabet. If k is greater than 0, the line continues with data for each of the k roads. The data for each road is the village label for the other end of the road followed by the monthly maintenance cost in aacms for the road. Maintenance costs will be positive integers less than 100. All data fields in the row are separated by single blanks. The road network will always allow travel between all the villages. The network will never have more than 75 roads. No village will have more than 15 roads going to other villages (before or after in the alphabet). In the sample input below, the first data set goes with the map above. 

    The output is one integer per line for each data set: the minimum cost in aacms per month to maintain a road system that connect all the villages. Caution: A brute force solution that examines every possible set of roads will not finish within the one minute time limit. 

    其实就是最小生成树裸题

     1 #include<stdio.h>
     2 #include<string.h>
     3 #include<algorithm>
     4 using namespace std;
     5 
     6 int fa[30],n;
     7 
     8 struct seg{
     9     int a,b,l;
    10 }s[80];
    11 
    12 bool cmp(seg a,seg b){
    13     return a.l<b.l;
    14 }
    15 
    16 void init(){
    17     int i;for(i=1;i<=n;i++)fa[i]=i;
    18 }
    19 
    20 int find(int x){
    21     if(fa[x]==x)return x;
    22     fa[x]=find(fa[x]);
    23     return fa[x];
    24 }
    25 
    26 void unio(int x,int y){
    27     int dx=find(x),dy=find(y);
    28     if(dx!=dy)fa[dx]=dy;
    29 }
    30 
    31 int main(){
    32     while(scanf("%d",&n)!=EOF&&n!=0){
    33         char a[2],b[2];
    34         int i,t,c=0;
    35         memset(s,0,sizeof(s));
    36         for(i=1;i<n;i++){
    37             scanf("%s%d",a,&t);
    38             int v;
    39             for(int j=1;j<=t;j++){
    40                 scanf("%s%d",b,&v);
    41                 s[++c].a=a[0]-'A'+1;
    42                 s[c].b=b[0]-'A'+1;
    43                 s[c].l=v;
    44             }
    45         }
    46         init();
    47         sort(s+1,s+c+1,cmp);
    48         int ans=0;t=0;
    49         for(i=1;i<=c;i++){
    50             if(find(s[i].a)==find(s[i].b))continue;
    51             ans+=s[i].l;
    52             unio(s[i].a,s[i].b);
    53             t++;
    54             if(t==n-1)break;
    55         }
    56         printf("%d
    ",ans);
    57     }
    58     return 0;
    59 }
    View Code
  • 相关阅读:
    老王讲架构:负载均衡
    支付宝系统架构内部剖析
    Effective Java 第三版——61. 基本类型优于装箱的基本类型
    Effective Java 第三版——60. 需要精确的结果时避免使用float和double类型
    Effective Java 第三版——59. 熟悉并使用Java类库
    Effective Java 第三版——58. for-each循环优于传统for循环
    Effective Java 第三版——57. 最小化局部变量的作用域
    Effective Java 第三版——56. 为所有已公开的API元素编写文档注释
    Effective Java 第三版——55. 明智而审慎地返回Optional
    Effective Java 第三版——54. 返回空的数组或集合不要返回null
  • 原文地址:https://www.cnblogs.com/cenariusxz/p/6578438.html
Copyright © 2011-2022 走看看