题目链接

就是裸的最小生成树,复习一下。

prim算法:

G=(V,E),V是点集,E是边集

假设T=(U,TE)是最小生成树。U,TE初始化为空

首先从V中任取一点 假设取V1,然后U={V1},只要U是V的真子集,就从那些一个端点在T中,一个端点在T外的边中,找一条最短边。一直下去,直到找到n-1条边

找边使用 堆优化,复杂度(ElogV) 邻接表复杂度(V2

 #include<cstdio>
#include<vector>
#include<queue>
#include<cstring>
using namespace std;
const int maxn=;
const int inf=0x3f3f3f3f; struct node{
int v,dis;
node(){}
node(int _v,int _dis){
v=_v;
dis=_dis;
}
bool operator<(const node &b) const {
return dis>b.dis;
}
}; int n,dis[maxn];
vector<node> G[maxn];
bool vis[maxn]; void prim() {
int ans=,num=;
priority_queue<node> pq;
for(int i=;i<n;i++) {
vis[i]=false;
dis[i]=inf;
}
pq.push(node(,));
node f;
while(num<n&&!pq.empty()) {
do{
f=pq.top();
pq.pop();
}while(vis[f.v]&&!pq.empty());
if(!vis[f.v]) {
ans+=f.dis;
vis[f.v]=true;
num++;
for(int i=;i<G[f.v].size();i++) {
int v=G[f.v][i].v;
if(!vis[v]) {
if(dis[v]>G[f.v][i].dis) {
dis[v]=G[f.v][i].dis;
pq.push(node(v,dis[v]));
}
}
}
}
}
if(num<n) printf("-1\n");//因为这里记录的是点的个数。不是边
else printf("%d\n",ans);
} int main() {
while(~scanf("%d",&n)) {
memset(G,,sizeof(G));
for(int i=;i<n;i++) {
for(int j=;j<n;j++) {
int x;
scanf("%d",&x);
if(x) G[i].push_back(node(j,x));
}
}
prim();
}
}

krusual算法:

将图G中的边按权值从小到大选取,使选取的不与生成树构成回路。直到n-1条边为止

判断回路就用并查集搞一下。

 #include<cstdio>
#include<vector>
#include<queue>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=;
const int inf=0x3f3f3f3f; int n;
struct Edge{
int u,v,dis;
Edge(){}
Edge(int _u,int _v,int _dis) {
u=_u;
v=_v;
dis=_dis;
}
bool operator <(const Edge &b) const {
return dis<b.dis;
}
}; vector<Edge> edge; int fa[maxn]; int Find(int x) {
if(fa[x]==-) return x;
else return fa[x]=Find(fa[x]);
} void Union(int x,int y) {
int fx=Find(x);
int fy=Find(y);
if(fx!=fy) {
fa[fx]=fy;
}
} int main() {
while(~scanf("%d",&n)) {
memset(fa,-,sizeof(fa));
edge.clear();
for(int i=;i<n;i++) {
for(int j=;j<n;j++) {
int x;
scanf("%d",&x);
if(x&&j<i) edge.push_back(Edge(i,j,x));
}
}
sort(edge.begin(),edge.end());
int num=,ans=;
for(int i=;i<edge.size();i++) {
int u=edge[i].u,v=edge[i].v,dis=edge[i].dis;
if(Find(u)!=Find(v)) {
num++;
ans+=dis;
Union(u,v);
}
}
if(num==n-) printf("%d\n",ans);
else printf("-1\n");
}
}

POJ1358 Agri-Net的更多相关文章

  1. Agri Net POJ1258 && Constructing Roads POJ2421

    题意,在给出的图中,使用最小花费的边,使这个图仍然连通. #include <cstdio> #include <algorithm> #include <cstring ...

  2. UI中经常出现的下拉框下拉自动筛选效果的实现

    小需求是当你在第一个下拉框选择了国家时,会自动更新第二个省份的下拉框,效果如下 两个下拉选择Html如下: <select id="country_select"> & ...

  3. 告别无止境的增删改查:Java代码生成器

    对于一个比较大的业务系统,我们总是无止境的增加,删除,修改,粘贴,复制,想想总让人产生一种抗拒的心里.那有什么办法可以在正常的开发进度下自动生成一些类,配置文件,或者接口呢?   有感于马上要做个比较 ...

  4. A过的题目

    1.TreeMap和TreeSet类:A - Language of FatMouse ZOJ1109B - For Fans of Statistics URAL 1613 C - Hardwood ...

  5. 告别无止境的增删改查--Java代码生成器

    转自:http://www.cnblogs.com/zhuYears/archive/2012/02/29/2373491.html 告别无止境的增删改查--Java代码生成器 有感于马上要做个比较大 ...

  6. 网络-05-端口号-F5-负载均衡设-linux端口详解大全--TCP注册端口号大全备

    [root@test1:Standby] config # [root@test1:Standby] config # [root@test1:Standby] config # [root@test ...

  7. Mybatis中 Integer 值为0时,默认为空字符串的解决办法。

    需求是查询级别为0的用户 User对象里的level字段的值为0,查询时居然没有查到为level为0的用户. <select id="selectSelective" par ...

  8. CentOS 7 服务端口表

    # Note that it is presently the policy of IANA to assign a single well-known# port number for both T ...

  9. etymon word air aero aeri aer ag agreement walk joint trick skill chief forget out~1

      1● air 2● aero 3● aeri 4● aer 空气 充气       1● ag     做,代理做   =====>agency       1● agr 2● agri 3 ...

随机推荐

  1. MySQL的FORMAT函数用法规则

    1.FORMAT函数在mysql中是数据内容格式化的,格式化后得到结果:###,###,#####. ,); 输出结果: ,000.00 2.可以格式化数据为整数或者浮点数. ); 输出结果: 100 ...

  2. Objective-C入门&nbsp;简介Cocoa框架

    Cocoa Framework简称Cocoa,它是Mac OS X上的快速应用程序开发(RAD, Rapid Application Development)框架,一个高度面向对象的(Object O ...

  3. OSCache-缓存过滤器CacheFilter

    用CashFilter实现页面级缓存. 在OSCache组件中提供了一个CacheFilter用于实现页面级的缓存,主要用于对web应用中的某些动态页面进行缓存,尤其是那些需要生成pdf格式文件/报表 ...

  4. sql2012新的系统函数&分析函数

    一 .系统函数 1.字符串类函数:不用判断类型和NULL的字符串连接CONCAT函数 SQL Server本来对字符串的连接很简单,直接使用“+”号,但是需要注意两个问题,一是必须类型都是字符串类型, ...

  5. 633. Sum of Square Numbers 是否由两个完全平方数构成

    [抄题]: Given a non-negative integer c, your task is to decide whether there're two integers a and b s ...

  6. 414. Third Maximum Number数组中第三大的数字

    [抄题]: Given a non-empty array of integers, return the third maximum number in this array. If it does ...

  7. poj1722 SUBTRACT

    应该是基础的dp练手题 线性dp最主要的就是关于阶段的划分,这个题中我没想到的一点就是开状态的时候使用了前i个数能合成的数来记录 我自己的想法就是类似于区间dp这样的记录方法,这种方法确实开了很多冗余 ...

  8. Django框架 之 form组件的钩子

    Django框架 之 form组件的钩子 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 3 ...

  9. Servlet中response对象Commit状态的分析

    response是服务端对客户端请求的一个响应,其中封装了响应头.状态码.内容(也就是最终要在浏览器上显示的HTML代码或者其他数据格式)等. 服务端在把response提交到客户端之前,会使用一个缓 ...

  10. SQL Server 时间类型转换函数

    cast ( expression as data_type(length))convert ( data_type (length), expression, style) //如果未指定 leng ...