HDOJ 1102

题目大意:

输入N表示现存在的村庄数目,接下来输入N*N规模的邻接矩阵来表示村庄间道路的信息,之后输入Q表示目前已存在的道路数目,随着输入Q条已存在的道路。求出使得所有村庄畅通的最.小代价。

算法思想:

1.新建一个邻接矩阵存储图的信息。

2.接着,将已经存在的道路的代价置为0,因为这样使得在最小生成树中对已存在的道路不产生代价。

3.用一个Edge的结构体数组存储所有的边。

4.将所有的边按权值非递减的顺序排序。

5.更具克鲁斯卡尔算法产生最小生成树计算最小的花费代价。

代码如下:

#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
const int MAXN=5500;
int G[105][105];//存储图的邻接矩阵
/*边结构*/
typedef struct {
    int start;
    int end;
    int value;
}Edge;
Edge road[MAXN];
/*排序时用的比较函数*/
bool cmp(Edge a,Edge b){
    if(a.value<b.value) return true;
    return false;
}
/*顶点表*/
int node[110];
/*并查集函数*/
int Find_set(int n){
    if(node[n]==-1) return n;
    return node[n]=Find_set(node[n]);
}
/*合并两棵树*/
bool Merge(int a,int b){
    int r1=Find_set(a);
    int r2=Find_set(b);
    if(r1==r2) return false;
    if(r1<r2) node[r2]=r1;
    if(r2<r1) node[r1]=r2;
    return true;
}
int Kruskal(int N,int M,int cost){
    int num=0;
    for(int i=0;i<M;i++){
        if(Merge(road[i].start,road[i].end)){
              num++;
              cost+=road[i].value;
        }
        if(num==N-1) break;
    }
   return cost;
}
int main(){
    int N,Q,k;//乡村数 已修道路数 总的道路数
    int a,b;//标记已建道路的两个端点
    long cost;//记录最小花费代价
    while(cin>>N){
        cost=0;
        k=0;
        memset(node,-1,sizeof(node));
        for(int i=1;i<=N;i++)//输入邻接矩阵
            for(int j=1;j<=N;j++)
                cin>>G[i][j];

        cin>>Q;
        for(int i=1;i<=Q;i++){//输入已经建好的道路信息
            cin>>a>>b;
            G[a][b]=0;//将修路代价置为0
            G[b][a]=0;
        }
        for(int i=1;i<=N;i++)//读取所有的道路信息
            for(int j=1;j<i;j++){
                road[k].start=i;
                road[k].end=j;
                road[k].value=G[i][j];
                k++;
            }
        sort(road,road+k,cmp);//对道路按边的权值进行排序
        cost=Kruskal(N,k,cost);//生成最小生成树
        cout<<cost<<endl;
    }
    return 0;
}
时间: 2024-10-08 11:25:52

HDOJ 1102的相关文章

hdoj 1102 Constructing Roads

并查集+最小生成树 Constructing Roads Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 15844    Accepted Submission(s): 6028 Problem Description There are N villages, which are numbered from 1 to N, and y

hdoj 1162 Eddy&#39;s picture(最小生成树)

Eddy's picture http://acm.hdu.edu.cn/showproblem.php?pid=1162 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7521    Accepted Submission(s): 3821 Problem Description Eddy begins to like painti

HDOJ 题目分类

HDOJ 题目分类 /* * 一:简单题 */ 1000:    入门用:1001:    用高斯求和公式要防溢出1004:1012:1013:    对9取余好了1017:1021:1027:    用STL中的next_permutation()1029:1032:1037:1039:1040:1056:1064:1065:1076:    闰年 1084:1085:1089,1090,1091,1092,1093,1094, 1095, 1096:全是A+B1108:1157:1196:1

【HDOJ】4328 Cut the cake

将原问题转化为求完全由1组成的最大子矩阵.挺经典的通过dp将n^3转化为n^2. 1 /* 4328 */ 2 #include <iostream> 3 #include <sstream> 4 #include <string> 5 #include <map> 6 #include <queue> 7 #include <set> 8 #include <stack> 9 #include <vector>

POJ Xiangqi 4001 &amp;&amp; HDOJ 4121 Xiangqi

题目链接(POJ):http://poj.org/problem?id=4001 题目链接(HDOJ):http://acm.hdu.edu.cn/showproblem.php?pid=4121 Xiangqi Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 1108   Accepted: 299 Description Xiangqi is one of the most popular two-player boa

【HDOJ】4956 Poor Hanamichi

基本数学题一道,看错位数,当成大数减做了,而且还把方向看反了.所求为最接近l的值. 1 #include <cstdio> 2 3 int f(__int64 x) { 4 int i, sum; 5 6 i = sum = 0; 7 while (x) { 8 if (i & 1) 9 sum -= x%10; 10 else 11 sum += x%10; 12 ++i; 13 x/=10; 14 } 15 return sum; 16 } 17 18 int main() { 1

HDOJ 4901 The Romantic Hero

DP....扫两遍组合起来 The Romantic Hero Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 547    Accepted Submission(s): 217 Problem Description There is an old country and the king fell in love with a

【HDOJ】1099 Lottery

题意超难懂,实则一道概率论的题目.求P(n).P(n) = n*(1+1/2+1/3+1/4+...+1/n).结果如果可以除尽则表示为整数,否则表示为假分数. 1 #include <cstdio> 2 #include <cstring> 3 4 #define MAXN 25 5 6 __int64 buf[MAXN]; 7 8 __int64 gcd(__int64 a, __int64 b) { 9 if (b == 0) return a; 10 else return

【HDOJ】2844 Coins

完全背包. 1 #include <stdio.h> 2 #include <string.h> 3 4 int a[105], c[105]; 5 int n, m; 6 int dp[100005]; 7 8 int mymax(int a, int b) { 9 return a>b ? a:b; 10 } 11 12 void CompletePack(int c) { 13 int i; 14 15 for (i=c; i<=m; ++i) 16 dp[i]