题意,在给出的图中,使用最小花费的边,使这个图仍然连通。

#include <cstdio>
#include <algorithm>
#include <cstring>
using namespace std;
const int maxn=10005;

int head[maxn];
int n,len=0,counter;
long long ans;
struct node{
    int v,cost,u;
	//操作符的重写默认是小于等于
    bool operator < (const node& tmp) const{
		return cost< tmp.cost;

}
}gra[maxn];
struct BingCha{
//并查集
    int father[105];
    void initial(){
	//初始化不要忘记
        for(int i=1;i<=n;i++){
            father[i]=i;
        }
    }
    int getfather(int v){
        if(father[v]==v)return v;
        return father[v]=getfather(father[v]);
	//状态压缩
    }
    bool findtwo(int a,int b){
	//看是否是同根的
        return getfather(a)==getfather(b);
    }
    void unioned(int a,int b){
        int fa=father[a],fb=father[b];
        father[fa]=fb;
    }
}jihe;
void addedge(int u,int v,int cost){
    gra[len].u=u;
    gra[len].v=v;
    gra[len].cost=cost;
    len++;
}
void init(){
    len=0;
    counter=1;ans=0;
    int x;
    memset(head,-1,sizeof(head));
//memset gra?
    for(int i=1;i<=n;i++){//add the edges
        for(int j=1;j<=n;j++){
                scanf("%d",&x);
                if(i<j){
                    addedge(i,j,x);
                }
            }
        }
    }

int main(){
    while(scanf("%d",&n)!=EOF){
        init();
        sort(gra,gra+len);
		//已经有序,那么从小值开始选边添加即可,也保证了最优结果
        int idx=0;
        jihe.initial();
        while(counter<n || idx<len){
            if(!jihe.findtwo(gra[idx].u,gra[idx].v)){
			//如果不同根,就选择这条边,执行更新操作
                ans+=gra[idx].cost;
                counter++;
                jihe.unioned(gra[idx].u,gra[idx].v);
            }
            idx++;
        }
            printf("%d\n",ans);

    }
}

  2421 也是裸的mst:只要把已经建了的作为输入先处理一下就好了。

 #include <cstdio>
 #include <algorithm>
 #include <cstring>
 using namespace std;
 ;

 int n,len,counter;
 long long ans;
 struct node{
     int v,cost,u;
     bool operator < (const node& tmp) const{
         return cost< tmp.cost;

 }
 }gra[maxn*(maxn-)>>];
 struct BingCha{
     ];
     void initial(){
         ;i<=n;i++){
             father[i]=i;
         }
     }
     int getfather(int v){
         if(father[v]==v)return v;
         return father[v]=getfather(father[v]);
     }
     bool findtwo(int a,int b){
         return getfather(a)==getfather(b);
     }
     void unioned(int a,int b){
         int fa=getfather(a),fb=getfather(b);
         father[fa]=fb;
     }
 }jihe;
 void addedge(int u,int v,int cost){
     gra[len].u=u;
     gra[len].v=v;
     gra[len].cost=cost;
     len++;
 }
 int findxy(int x,int y){

     if(x>y){int z=y;y=x;x=z;}
     ,id=;
     ;i<x;i++){
         id+=j--;
     }
     y-=x;// here!!!
     id+=y;
     return id;
 }
 void init(){
     len=;
     counter=;ans=;
     jihe.initial();
     int x,q,y;
 //memset gra?
     ;i<=n;i++){//add the edges
         ;j<=n;j++){
                 scanf("%d",&x);
                 if(i<j){
                     addedge(i,j,x);
                 }
         }
     }
     scanf("%d",&q);
     ;i<=q;i++){
         scanf("%d%d",&x,&y);
         ;
         if(!jihe.findtwo(gra[idx].u,gra[idx].v)){
             counter++;
             jihe.unioned(gra[idx].u,gra[idx].v);
         }
     }
 }

 int main(){
     while(scanf("%d",&n)!=EOF){
         init();
         sort(gra,gra+len);
         ;
         while(counter<n){//|| idx<=len
             if(!jihe.findtwo(gra[idx].u,gra[idx].v)){
                 ans+=gra[idx].cost;
                 counter++;
                 jihe.unioned(gra[idx].u,gra[idx].v);
             }
             idx++;
         }
             printf("%d\n",ans);

     }
 }

Agri Net POJ1258 && Constructing Roads POJ2421的更多相关文章

  1. HDU1102&&POJ2421 Constructing Roads 2017-04-12 19:09 44人阅读 评论(0) 收藏

    Constructing Roads Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other) ...

  2. POJ2421 Constructing Roads

    Constructing Roads 这道题很水,就是一个裸的最小生成树,最不过把已经连接的节点的值再设为0. 代码: #include<cstdio> #include<cstri ...

  3. Constructing Roads——F

    F. Constructing Roads There are N villages, which are numbered from 1 to N, and you should build som ...

  4. Constructing Roads In JGShining's Kingdom(HDU1025)(LCS序列的变行)

    Constructing Roads In JGShining's Kingdom  HDU1025 题目主要理解要用LCS进行求解! 并且一般的求法会超时!!要用二分!!! 最后蛋疼的是输出格式的注 ...

  5. [ACM] hdu 1025 Constructing Roads In JGShining's Kingdom (最长递增子序列,lower_bound使用)

    Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65 ...

  6. HDU 1102 Constructing Roads

    Constructing Roads Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Other ...

  7. Constructing Roads (MST)

    Constructing Roads Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u ...

  8. HDU 1025 Constructing Roads In JGShining's Kingdom(二维LIS)

    Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65 ...

  9. hdu--(1025)Constructing Roads In JGShining's Kingdom(dp/LIS+二分)

    Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65 ...

随机推荐

  1. strlen() 和 strcpy()函数

    strlen() 和 strcpy()函数的区别,这两个一个是返回一个C风格字符串的长度,一个是对一个C风格字符串的拷贝,两个本来功能上是不同的,此外,他们还有一些细小的区别:strlen(" ...

  2. 查看Aix系统配置命令

    prtconf#topas http://baike.baidu.com/link?url=QruEnlfCqyoqQ565LicyKxIGMQYSkVesj6j9GzHWwzpDOagXtuprhT ...

  3. 反编译.o到.cpp

    反编译.o到.cpp 现在有很多反编译是对Java的,而.cpp的很少 因为不同的平台.cpp生成的.o是不一样的,但是Java因为有虚拟机的中间作用,生成的.o在不同平台是一样的 反编译的机理 (通 ...

  4. 【转帖】error C2296: “^”: 非法,左操作数包含“double”类型

    想要实现 ,写的C++程序为 double x; x=2^3; 结果程序总是出现这样的错误:error C2296: “^”: 非法,左操作数包含“double”类型 后来才发现操作符“^”,在C++ ...

  5. C++四种强制类型转换关键字

    C语言使用强制类型转换(Type Cast)很简单,不管什么类型的转换,形式都如下: TYPE b = (TYPE)a; c++提供了4种类型转换操作符来应对不同场合的应用. const_cast   ...

  6. Spring MVC - log4j 配置

    http://blog.csdn.net/yhqbsand/article/details/8764388

  7. phpcms v9 自定义分页 带下拉跳转

    <?php function new_pages($num, $curr_page, $perpage = 20, $urlrule = '', $array = array(),$setpag ...

  8. json 语义分析

    json 中:元素与值用冒号 ":" 隔开元素与元素用逗号 "," 隔开{} 之间是一个对象, 对象可以层层嵌套[] 表示数组, 数组元素用逗号 ", ...

  9. Python print语句

    1. 输出字符串 >>> strHello = 'Hello World' >>> print (strHello) Hello World 2. 格式化输出整数 ...

  10. C语言socket编程--每日签到

    前几天写了个python的每日签到,你运行还得借助crontab,很是不爽.....正好前几天看了个关于c编写daemon进程,加上自己那点可怜的socket知识,于是我们重操旧页,C语言版的每日签到 ...