Ice_cream’s world III

Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 1237    Accepted Submission(s): 408

Problem Description
ice_cream’s world becomes stronger and stronger; every road is built as undirected. The queen enjoys traveling around her world; the queen’s requirement is like II problem, beautifies the roads, by which there are some ways from every
city to the capital. The project’s cost should be as less as better.
 
Input
Every case have two integers N and M (N<=1000, M<=10000) meaning N cities and M roads, the cities numbered 0…N-1, following N lines, each line contain three integers S, T and C, meaning S connected with T have a road will cost C.
 
Output
If Wiskey can’t satisfy the queen’s requirement, you must be output “impossible”, otherwise, print the minimum cost in this project. After every case print one blank.
 
Sample Input
  1. 2 1
  2. 0 1 10
  3. 4 0
 
Sample Output
  1. 10
  2. impossible
 
Author
Wiskey
浮在水面上的小岛要连通,求最少花费,假设没有,则输出impossible。
代码1【克鲁斯卡尔】:


  1. #include<cstdio>
  2. #include<cstring>
  3. #include<cstdlib>
  4. #include<algorithm>
  5. #include<iostream>
  6. #include<cmath>
  7. using namespace std;
  8.  
  9. int n,m;
  10. int pre[1010];
  11. struct node{
  12. int u;
  13. int v;
  14. int w;
  15. };
  16. node sb[10010];
  17.  
  18. bool cmp(node a,node b)
  19. {
  20. return a.w<b.w;
  21. }
  22.  
  23. int find(int x)
  24. {
  25. if(pre[x]==x)
  26. return x;
  27. return pre[x]=find(pre[x]);
  28. }
  29.  
  30. bool join(int x,int y)
  31. {
  32. int f1,f2;
  33. f1=find(x);
  34. f2=find(y);
  35. if(f1==f2)
  36. return false;
  37. if(f1!=f2)
  38. pre[f1]=f2;
  39. return true;
  40. }
  41.  
  42. int main()
  43. {
  44. int sum;
  45. while(scanf("%d%d",&n,&m)!=EOF)
  46. {
  47. sum=0;
  48. for(int i=0;i<n;i++)
  49. pre[i]=i;
  50. for(int i=0;i<m;i++)
  51. scanf("%d%d%d",&sb[i].u,&sb[i].v,&sb[i].w);
  52. sort(sb,sb+m,cmp);
  53. for(int i=0;i<m;i++)
  54. {
  55. if(join(sb[i].u,sb[i].v))
  56. sum+=sb[i].w;
  57. }
  58. int cnt=0;
  59. for(int i=0;i<n;i++)
  60. {
  61. if(pre[i]==i)
  62. cnt++;
  63. }
  64. if(cnt>1)
  65. printf("impossible\n\n");
  66. else
  67. printf("%d\n\n",sum);
  68. }
  69. return 0;
  70. }

代码2【普利姆】:

  1. #include<cstdio>
  2. #include<cstring>
  3. #include<algorithm>
  4. #include<iostream>
  5. using namespace std;
  6. const int INF= 0x3f3f3f3f;
  7. const int maxb=1010;
  8. int map[maxb][maxb];
  9. int vis[maxb];
  10. int n,m,sum;
  11. int a,b,c;
  12.  
  13. void prime()
  14. {
  15. int i,j,k,dis[maxb];
  16. int min;
  17. memset(vis,0,sizeof(vis));
  18. int ans=1;
  19. vis[0]=1;
  20. for(i=0;i<n;i++)
  21. dis[i]=map[0][i];
  22. for(i=0;i<n;i++)
  23. {
  24. min=INF;
  25. for(j=0;j<n;j++)
  26. if(!vis[j]&&min>dis[j])
  27. min=dis[k=j];
  28. if(min==INF)
  29. {
  30. if(ans==n)
  31. printf("%d\n",sum);
  32. else
  33. puts("impossible");
  34. break;
  35. }
  36. sum+=min;
  37. vis[k]=1;
  38. ans++;
  39. for(j=0;j<n;j++)
  40. if(!vis[j]&&dis[j]>map[k][j])
  41. dis[j]=map[k][j];
  42. }
  43. }
  44.  
  45. int main()
  46. {
  47. while(scanf("%d%d",&n,&m)!=EOF)
  48. {
  49. memset(map,INF,sizeof(map));
  50. sum=0;
  51. while(m--)
  52. {
  53. scanf("%d%d%d",&a,&b,&c);
  54. if(map[a][b]>c)
  55. map[a][b]=map[b][a]=c;
  56. }
  57. //getchar();
  58. prime();
  59. //getchar();
  60. puts("");
  61. }
  62. return 0;
  63. }




hdoj 2122 Ice_cream’s world III【最小生成树】的更多相关文章

  1. hdoj 2122 Ice_cream’s world III

    并查集+最小生成树 Ice_cream’s world III Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 ...

  2. HDU 2122 Ice_cream’s world III【最小生成树】

    解题思路:基础的最小生成树反思:不明白为什么i从1开始取,就一直WA,难道是因为村庄的编号是从0开始的吗 Ice_cream’s world III Time Limit: 3000/1000 MS ...

  3. Ice_cream’s world III(prime)

    Ice_cream’s world III Time Limit : 3000/1000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Othe ...

  4. hdoj 2121 Ice_cream’s world II 【没有最低树的根节点】

    称号:pid=2121" target="_blank">hdoj 2121 Ice_cream's world II 题意:题目是一道躶题,给n个点,m条边的有向 ...

  5. Ice_cream’s world III

    Ice_cream's world III Time Limit : 3000/1000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Othe ...

  6. A - Ice_cream’s world III

    Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Submit Status Pract ...

  7. HDOJ.2064 汉诺塔III

    汉诺塔III Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submis ...

  8. hdoj 2120 Ice_cream's world I【求成环数】

    Ice_cream's world I Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Othe ...

  9. HDOJ 2120 Ice_cream's world I

    Ice_cream's world I ice_cream's world is a rich country, it has many fertile lands. Today, the queen ...

随机推荐

  1. Lenovo k860i 移植Android 4.4 cm11进度记录【上篇已完结】

    2014.5.16 为了验证一下下载的CM11的源码有没有问题,决定编译一下cm官方支持的机器,手上正好有台nexus7 2012,就拿它为例测试一下在mac os x平台的整个编译过程. 1. 最开 ...

  2. 【UVA 437】The Tower of Babylon(拓扑排序+DP,做法)

    [Solution] 接上一篇,在处理有向无环图的最长链问题的时候,可以在做拓扑排序的同时,一边做DP; 设f[i]表示第i个方块作为最上面的最高值; f[y]=max(f[y],f[x]+h[y]) ...

  3. 无比强大!Python抓取cssmoban网站的模版并下载

    Python实现抓取http://www.cssmoban.com/cssthemes网站的模版并下载 实现代码 # -*- coding: utf-8 -*- import urlparse imp ...

  4. python里面 __future__的作用 & 下划线的作用 & 3.0实现不换行

    参考这篇文章: http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/001386820 ...

  5. SpringMVC+MyBatis (druid、logback)

    数据库连接池是阿里巴巴的druid.日志框架式logback 1.整合SpringMVCspringMybatis-servlet.xml: <?xml version="1.0&qu ...

  6. OPENCV(7) —— HighGUI

    包括函数createTrackbar.getTrackbarPos.setTrackbarPos.imshow.namedWindow.destroyWindow.destroyAllWindows. ...

  7. datatable设置成中文

    $('#datatable').DataTable({ language: { "sProcessing": "处理中...", "sLengthMe ...

  8. 【Linux下用户和组管理】

    创建用户--useradd . 命令格式:useradd [参数] 用户名 useradd也可写成adduser . 参数如下 -u 指定UID号 -d 指定宿主目录 -e 指定生效时间 -g 指定基 ...

  9. 今日SGU 5.20

    SGU 404 题意:.. 收获:取模 #include<bits/stdc++.h> #define de(x) cout<<#x<<"="& ...

  10. Centos6.5 安装lnmp环境

    最近项目要配置在nginx上,所以搜索了下具体nginx的安装,看到这篇文章简洁明了而且测试成功就借用了,作品出处:http://www.cnblogs.com/xiaoit/p/3991037.ht ...