hdoj 2122 Ice_cream’s world III【最小生成树】
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
city to the capital. The project’s cost should be as less as better.
2 1 0 1 10 4 0
10 impossible
- #include<cstdio>
- #include<cstring>
- #include<cstdlib>
- #include<algorithm>
- #include<iostream>
- #include<cmath>
- using namespace std;
- int n,m;
- int pre[1010];
- struct node{
- int u;
- int v;
- int w;
- };
- node sb[10010];
- bool cmp(node a,node b)
- {
- return a.w<b.w;
- }
- int find(int x)
- {
- if(pre[x]==x)
- return x;
- return pre[x]=find(pre[x]);
- }
- bool join(int x,int y)
- {
- int f1,f2;
- f1=find(x);
- f2=find(y);
- if(f1==f2)
- return false;
- if(f1!=f2)
- pre[f1]=f2;
- return true;
- }
- int main()
- {
- int sum;
- while(scanf("%d%d",&n,&m)!=EOF)
- {
- sum=0;
- for(int i=0;i<n;i++)
- pre[i]=i;
- for(int i=0;i<m;i++)
- scanf("%d%d%d",&sb[i].u,&sb[i].v,&sb[i].w);
- sort(sb,sb+m,cmp);
- for(int i=0;i<m;i++)
- {
- if(join(sb[i].u,sb[i].v))
- sum+=sb[i].w;
- }
- int cnt=0;
- for(int i=0;i<n;i++)
- {
- if(pre[i]==i)
- cnt++;
- }
- if(cnt>1)
- printf("impossible\n\n");
- else
- printf("%d\n\n",sum);
- }
- return 0;
- }
代码2【普利姆】:
- #include<cstdio>
- #include<cstring>
- #include<algorithm>
- #include<iostream>
- using namespace std;
- const int INF= 0x3f3f3f3f;
- const int maxb=1010;
- int map[maxb][maxb];
- int vis[maxb];
- int n,m,sum;
- int a,b,c;
- void prime()
- {
- int i,j,k,dis[maxb];
- int min;
- memset(vis,0,sizeof(vis));
- int ans=1;
- vis[0]=1;
- for(i=0;i<n;i++)
- dis[i]=map[0][i];
- for(i=0;i<n;i++)
- {
- min=INF;
- for(j=0;j<n;j++)
- if(!vis[j]&&min>dis[j])
- min=dis[k=j];
- if(min==INF)
- {
- if(ans==n)
- printf("%d\n",sum);
- else
- puts("impossible");
- break;
- }
- sum+=min;
- vis[k]=1;
- ans++;
- for(j=0;j<n;j++)
- if(!vis[j]&&dis[j]>map[k][j])
- dis[j]=map[k][j];
- }
- }
- int main()
- {
- while(scanf("%d%d",&n,&m)!=EOF)
- {
- memset(map,INF,sizeof(map));
- sum=0;
- while(m--)
- {
- scanf("%d%d%d",&a,&b,&c);
- if(map[a][b]>c)
- map[a][b]=map[b][a]=c;
- }
- //getchar();
- prime();
- //getchar();
- puts("");
- }
- return 0;
- }
hdoj 2122 Ice_cream’s world III【最小生成树】的更多相关文章
- hdoj 2122 Ice_cream’s world III
并查集+最小生成树 Ice_cream’s world III Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 ...
- HDU 2122 Ice_cream’s world III【最小生成树】
解题思路:基础的最小生成树反思:不明白为什么i从1开始取,就一直WA,难道是因为村庄的编号是从0开始的吗 Ice_cream’s world III Time Limit: 3000/1000 MS ...
- Ice_cream’s world III(prime)
Ice_cream’s world III Time Limit : 3000/1000ms (Java/Other) Memory Limit : 32768/32768K (Java/Othe ...
- hdoj 2121 Ice_cream’s world II 【没有最低树的根节点】
称号:pid=2121" target="_blank">hdoj 2121 Ice_cream's world II 题意:题目是一道躶题,给n个点,m条边的有向 ...
- Ice_cream’s world III
Ice_cream's world III Time Limit : 3000/1000ms (Java/Other) Memory Limit : 32768/32768K (Java/Othe ...
- A - Ice_cream’s world III
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Submit Status Pract ...
- HDOJ.2064 汉诺塔III
汉诺塔III Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submis ...
- 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 ...
- 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 ...
随机推荐
- Lenovo k860i 移植Android 4.4 cm11进度记录【上篇已完结】
2014.5.16 为了验证一下下载的CM11的源码有没有问题,决定编译一下cm官方支持的机器,手上正好有台nexus7 2012,就拿它为例测试一下在mac os x平台的整个编译过程. 1. 最开 ...
- 【UVA 437】The Tower of Babylon(拓扑排序+DP,做法)
[Solution] 接上一篇,在处理有向无环图的最长链问题的时候,可以在做拓扑排序的同时,一边做DP; 设f[i]表示第i个方块作为最上面的最高值; f[y]=max(f[y],f[x]+h[y]) ...
- 无比强大!Python抓取cssmoban网站的模版并下载
Python实现抓取http://www.cssmoban.com/cssthemes网站的模版并下载 实现代码 # -*- coding: utf-8 -*- import urlparse imp ...
- python里面 __future__的作用 & 下划线的作用 & 3.0实现不换行
参考这篇文章: http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/001386820 ...
- SpringMVC+MyBatis (druid、logback)
数据库连接池是阿里巴巴的druid.日志框架式logback 1.整合SpringMVCspringMybatis-servlet.xml: <?xml version="1.0&qu ...
- OPENCV(7) —— HighGUI
包括函数createTrackbar.getTrackbarPos.setTrackbarPos.imshow.namedWindow.destroyWindow.destroyAllWindows. ...
- datatable设置成中文
$('#datatable').DataTable({ language: { "sProcessing": "处理中...", "sLengthMe ...
- 【Linux下用户和组管理】
创建用户--useradd . 命令格式:useradd [参数] 用户名 useradd也可写成adduser . 参数如下 -u 指定UID号 -d 指定宿主目录 -e 指定生效时间 -g 指定基 ...
- 今日SGU 5.20
SGU 404 题意:.. 收获:取模 #include<bits/stdc++.h> #define de(x) cout<<#x<<"="& ...
- Centos6.5 安装lnmp环境
最近项目要配置在nginx上,所以搜索了下具体nginx的安装,看到这篇文章简洁明了而且测试成功就借用了,作品出处:http://www.cnblogs.com/xiaoit/p/3991037.ht ...