博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj1287——Networking(prim)
阅读量:2344 次
发布时间:2019-05-10

本文共 2648 字,大约阅读时间需要 8 分钟。

Description

You are assigned to design network connections between certain points in a wide area. You are given a set of points in the area, and a set of possible routes for the cables that may connect pairs of points. For each possible route between two points, you are given the length of the cable that is needed to connect the points over that route. Note that there may exist many possible routes between two given points. It is assumed that the given possible routes connect (directly or indirectly) each two points in the area.

Your task is to design the network for the area, so that there is a connection (direct or indirect) between every two points (i.e., all the points are interconnected, but not necessarily by a direct cable), and that the total length of the used cable is minimal.
Input

The input file consists of a number of data sets. Each data set defines one required network. The first line of the set contains two integers: the first defines the number P of the given points, and the second the number R of given routes between the points. The following R lines define the given routes between the points, each giving three integer numbers: the first two numbers identify the points, and the third gives the length of the route. The numbers are separated with white spaces. A data set giving only one number P=0 denotes the end of the input. The data sets are separated with an empty line.

The maximal number of points is 50. The maximal length of a given route is 100. The number of possible routes is unlimited. The nodes are identified with integers between 1 and P (inclusive). The routes between two points i and j may be given as i j or as j i.
Output

For each data set, print one number on a separate line that gives the total length of the cable used for the entire designed network.

Sample Input

1 0

2 3

1 2 37
2 1 17
1 2 68

3 7

1 2 19
2 3 11
3 1 7
1 3 5
2 3 89
3 1 91
1 2 32

5 7

1 2 5
2 3 7
2 4 8
4 5 11
3 5 10
1 5 6
4 2 12

0

Sample Output

0

17
16
26

有点不同的是两个节点之间会有多种可能的权值,那只要选择最小的那个就行了

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x3f3f3f3f#define MAXN 100#define Mod 10001using namespace std;int n,map[MAXN][MAXN],vis[MAXN],dis[MAXN];int prim(){ int i,j,pos,min,ans=0; memset(vis,0,sizeof(vis)); vis[1]=1,pos=1; for(i=1; i<=n; ++i) if(i!=pos) dis[i]=map[pos][i]; for(i=1; i
map[pos][j]) dis[j]=map[pos][j]; } return ans;}int main(){ int m; while(~scanf("%d",&n)&&n) { scanf("%d",&m); for(int i=1; i<=n; ++i) for(int j=1; j<=n; ++j) map[i][j]=INF; while(m--) { int u,v,w; scanf("%d%d%d",&u,&v,&w); if(w

转载地址:http://rscvb.baihongyu.com/

你可能感兴趣的文章
IDEA 创建多模块MAVEN SpringBoot项目
查看>>
Mysql导入SQL语句报错:The used table type doesn‘t support FULLTEXT indexes
查看>>
NPM 替代产品Yarn的安装和使用
查看>>
JAVA 注解反射 过滤修改对象值
查看>>
SVN Working Copy Locked 解决方法
查看>>
Java Spring Cloud Gateway 和Zull 对比
查看>>
Spring Cloud Gateway 微服务系统使用swagger-bootstrap-ui生成接口文档
查看>>
Mysql 单表联合更新
查看>>
Mybatis Plus 逻辑删除理论与实践
查看>>
Java Hutool 汉字转拼音码
查看>>
Java后端限制频繁请求、重复提交
查看>>
Java Request 获取请求method,请求param,请求body
查看>>
Mybatis plus 多数据源切换
查看>>
极速搭建一个FTP服务器
查看>>
Java Ftp 文件操作
查看>>
Windows 简单安装配置Redis
查看>>
Mybatis Plus 逆向生成实体类、实现类、控制层
查看>>
IDEA解除SVN关联
查看>>
Springboot 指定运行时配置文件的几种方式
查看>>
Log4j 输出完整的异常信息
查看>>