kruskal_并查集_代码模板 hdu1232

2023-12-03 14:09

本文主要是介绍kruskal_并查集_代码模板 hdu1232,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

kruskal代码模板

input

a _the number of verteices

b _the number of edges

v1_verteices

wi_the weight of each edge

#include<iostream>
#include<string>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<ctype.h>
#include<algorithm>
#include<map>
#include<vector>
#include<set>#define MAX 100005
#define MOD 1000003
#define inf 100000000
#define eps 1e-9
#define pi acos(-1.0)
#define LL long long 
#define I64 __int64
#define max(a, b) ((a) > (b) ? (a) : (b))
#define min(a, b) ((a) < (b) ? (a) : (b))using namespace std;struct edge {int v1, v2, w;
};int edge_num, vertex_num;
edge volume_e[30];
int father[30];int cmp (edge a, edge b) {return a.w < b.w;
}int find (int x) {int root = x;for (father[root] != root)root = father[root];return root;
}int main()
{freopen ("in.txt", "r", stdin);cin >> edge_num >> vertex_num;// the number of edge and vertex// v1, v2, weightfor (int i = 0;i < edge_num;i ++)scanf ("%d %d %d", &volume_e[i].v1, &volume_e[i].v2, &volume_e[i].w);// initialfor (int i = 1;i <= vertex_num;i ++) father[i] = i;sort (volume_e, volume_e+edge_num, cmp);int sum = 0;for (int i = 0; i < edge_num;i ++){int x = find (volume_e[i].v1);int y = find (volume_e[i].v2);if (x != y){sum += volume_e[i].w;father[x] = y;}}printf ("%d\n", sum);
}/*
5 5
1 2 2
2 3 3
1 4 1
3 4 2
4 5 4*/

HDU1232

#include<iostream>
#include<string>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<ctype.h>
#include<algorithm>
#include<map>
#include<vector>
#include<set>
using namespace std;int add;
int f[100010];
int n, m;int findset(int x)
{int set = x;while(f[set] != set){set = f[set];}return set;
}void merge(int a, int b)
{int x = findset(a);int y = findset(b);if(x != y)f[x] = y;
}int main()
{freopen("in.txt", "r", stdin);while(scanf("%d %d", &n, &m) == 2){add = 0;if(n == 0)break;else if(m == 0){add = n - 1;printf("%d\n", add);}else{for(int i = 1; i <= n; i++) f[i] = i;for(int i = 0; i < m; i++){int a, b;scanf("%d %d", &a, &b);merge(a, b);}for(int i = 1; i <= n; i++)if(f[i] == i)add++;add--;printf("%d\n", add);}//memset(f, 0, sizeof(f));}
}/*
4 2
1 3
4 3
3 3
1 2
1 3
2 3
5 2
1 2
3 5
999 0
0*/

这篇关于kruskal_并查集_代码模板 hdu1232的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/449715

相关文章

Python实例题之pygame开发打飞机游戏实例代码

《Python实例题之pygame开发打飞机游戏实例代码》对于python的学习者,能够写出一个飞机大战的程序代码,是不是感觉到非常的开心,:本文主要介绍Python实例题之pygame开发打飞机... 目录题目pygame-aircraft-game使用 Pygame 开发的打飞机游戏脚本代码解释初始化部

Java中Map.Entry()含义及方法使用代码

《Java中Map.Entry()含义及方法使用代码》:本文主要介绍Java中Map.Entry()含义及方法使用的相关资料,Map.Entry是Java中Map的静态内部接口,用于表示键值对,其... 目录前言 Map.Entry作用核心方法常见使用场景1. 遍历 Map 的所有键值对2. 直接修改 Ma

深入解析 Java Future 类及代码示例

《深入解析JavaFuture类及代码示例》JavaFuture是java.util.concurrent包中用于表示异步计算结果的核心接口,下面给大家介绍JavaFuture类及实例代码,感兴... 目录一、Future 类概述二、核心工作机制代码示例执行流程2. 状态机模型3. 核心方法解析行为总结:三

python获取cmd环境变量值的实现代码

《python获取cmd环境变量值的实现代码》:本文主要介绍在Python中获取命令行(cmd)环境变量的值,可以使用标准库中的os模块,需要的朋友可以参考下... 前言全局说明在执行py过程中,总要使用到系统环境变量一、说明1.1 环境:Windows 11 家庭版 24H2 26100.4061

pandas实现数据concat拼接的示例代码

《pandas实现数据concat拼接的示例代码》pandas.concat用于合并DataFrame或Series,本文主要介绍了pandas实现数据concat拼接的示例代码,具有一定的参考价值,... 目录语法示例:使用pandas.concat合并数据默认的concat:参数axis=0,join=

C#代码实现解析WTGPS和BD数据

《C#代码实现解析WTGPS和BD数据》在现代的导航与定位应用中,准确解析GPS和北斗(BD)等卫星定位数据至关重要,本文将使用C#语言实现解析WTGPS和BD数据,需要的可以了解下... 目录一、代码结构概览1. 核心解析方法2. 位置信息解析3. 经纬度转换方法4. 日期和时间戳解析5. 辅助方法二、L

Python使用Code2flow将代码转化为流程图的操作教程

《Python使用Code2flow将代码转化为流程图的操作教程》Code2flow是一款开源工具,能够将代码自动转换为流程图,该工具对于代码审查、调试和理解大型代码库非常有用,在这篇博客中,我们将深... 目录引言1nVflRA、为什么选择 Code2flow?2、安装 Code2flow3、基本功能演示

IIS 7.0 及更高版本中的 FTP 状态代码

《IIS7.0及更高版本中的FTP状态代码》本文介绍IIS7.0中的FTP状态代码,方便大家在使用iis中发现ftp的问题... 简介尝试使用 FTP 访问运行 Internet Information Services (IIS) 7.0 或更高版本的服务器上的内容时,IIS 将返回指示响应状态的数字代

MySQL 添加索引5种方式示例详解(实用sql代码)

《MySQL添加索引5种方式示例详解(实用sql代码)》在MySQL数据库中添加索引可以帮助提高查询性能,尤其是在数据量大的表中,下面给大家分享MySQL添加索引5种方式示例详解(实用sql代码),... 在mysql数据库中添加索引可以帮助提高查询性能,尤其是在数据量大的表中。索引可以在创建表时定义,也可

使用C#删除Excel表格中的重复行数据的代码详解

《使用C#删除Excel表格中的重复行数据的代码详解》重复行是指在Excel表格中完全相同的多行数据,删除这些重复行至关重要,因为它们不仅会干扰数据分析,还可能导致错误的决策和结论,所以本文给大家介绍... 目录简介使用工具C# 删除Excel工作表中的重复行语法工作原理实现代码C# 删除指定Excel单元