首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >HDUOJ----1301 Jungle Roads

HDUOJ----1301 Jungle Roads

作者头像
Gxjun
发布2018-03-21 13:30:32
4680
发布2018-03-21 13:30:32
举报
文章被收录于专栏:mlml

Jungle Roads

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 3968    Accepted Submission(s): 2888

Problem Description

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. 

Sample Input

9 A 2 B 12 I 25 B 3 C 10 H 40 I 8 C 2 D 18 G 55 D 1 E 44 E 2 F 60 G 38 F 0 G 1 H 35 H 1 I 35

3 A 2 B 10 C 40 B 1 C 20 0

Sample Output

216 30

Source

Mid-Central USA 2002

 最小生成树   ,解法一 普利姆算法...

做了这么多不妨做一个总结ba 。 关于普利姆算法

普利姆一般用于连续的点...(密集型的结构图)。

通过这个p大家可能会看的比较明白....

比如 第二个样列 

3

A 2 B 10 C 40

B 1 C 20        a-->(b-->c  ,c)  对于这样一个图,随机从一点出发... 米前景一步变求一次最小,,,

于是 觉得用代码更有说服力。。。毕竟要说明白也很花时间,.

代码:

 1 // test 1 prim
 2 //< @ Gxjun coder>
 3 #include<stdio.h>
 4 #include<string.h>
 5 const int inf=0x3f3f3f3f ;
 6 int vis[27],lowc[27];
 7 int prim( const int cost[][27], int n)
 8 {
 9     int i,j,p;
10     memset(vis,0,sizeof(vis));
11     vis[0]=1;
12     int minc,res=0;
13     for(i=1; i<n ;i++)
14         lowc[i]=cost[0][i];
15     for(i=1;i<n;i++)
16     {
17         minc=inf;
18         p=-1;
19         for( j=0; j<n; j++)
20         {
21             if(0==vis[j] && minc>lowc[j])
22             {
23                 minc = lowc[j];
24                 p=j;
25             }
26         }
27             if(minc==inf) return -1;
28             res+=minc; 
29             vis[p]=1;
30             for(j=0 ; j<n ;j++)
31             {
32                 if(vis[j]==0 && lowc[j]>cost[p][j])
33                     lowc[j]=cost[p][j];
34             }
35 
36 
37     }
38     return res;
39 }
40 int sta[27][27];
41 int main()
42 {
43     int n,m,i,j;
44     char a[2],b[2];
45     int val;
46     while(scanf("%d",&n),n)
47     {
48         for(i=0 ;i<26; i++)
49         {
50             for( j=0; j<26 ;j++)
51             {
52                 sta[i][j]=inf;
53             }
54         }
55         for(i=1; i<n; i++)
56         {
57 
58             scanf("%s %d",a,&m);
59             int fo=a[0]-'A';
60             while(m--)
61             {
62                 scanf("%s %d",b, &val);    
63                 int tot=b[0]-'A';
64                 sta[fo][tot]=sta[tot][fo]=val;
65             }
66         }
67 
68         printf("%d\n",prim(sta,n));
69     }
70     return 0;
71 }

 方法二: 克鲁斯卡尔算法(krusal)

运用并查集进行联通分量的查找,逐步口大连通分量.....

详细代码:

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
typedef struct Side
{
    int vs,ve;       //<vs--->表示开始的位置,ve-->代表结束的位置>
    int len ;        // <边的长度>
}side;
side sta[100];       //最多50个节点
//<用到并查集来A>
 int father[27];
/*初始化*/
 void mset()
 {
     for(int i=0; i<26 ;i++)
         father[i]=i;
 }
 //<查找>
 int setfind(int x)
{
    if(x!=father[x])
        father[x]=setfind(father[x]);
    return father[x];
}
// <合并>即克鲁斯卡尔算法 
 void krusal( int sx ,int sy)
 {
     int x=setfind(sx);
     int y=setfind(sy);
     if(x==y) return ;
     if(x<y)
         father[y]=x;
     else
         father[x]=y;
    
 }
 int cmp(const void* a ,const void* b )
 {
     return (*(side *)a).len-(*(side*)b).len;
 }

int main( void )
{
int n,m,tol,val,i,ans;
char a[2],b[2];
while(scanf("%d",&n),n)
{
    ans=tol=0;
    for(i=1; i<n ;i++)
    {
        scanf("%s%d",a,&m);
        while(m--)
        {
            scanf("%s%d",b, &val);
            sta[tol].vs=a[0]-65;
            sta[tol].ve=b[0]-65;
            sta[tol].len=val;
            tol++;
        }
    }
    mset();
    qsort(sta,tol ,sizeof(sta[0]),cmp);
    for(i=0 ; i<tol ;i++)
    {
        int tem1=setfind(sta[i].vs);
        int tem2=setfind( sta[i].ve ) ;
        if(tem1 != tem2)  //如果两个两桶分量不在一起,那就链接起来
        {
            krusal(tem1,tem2);
            ans+=sta[i].len;
        }
    }
    printf("%d\n",ans);
}
    return 0;
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-02-26 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Jungle Roads
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档