hdu1102最小生成树Constructing Roads

Constructing Roads

Problem Description
There are N villages, which are numbered from 1 to N, and you should build some roads such that every two villages can connect to each other. We say two village A and B are connected, if and only if there is a road between A and B, or there exists a village C such that there is a road between A and C, and C and B are connected.

We know that there are already some roads between some villages and your job is the build some roads such that all the villages are connect and the length of all the roads built is minimum.

Input
The first line is an integer N (3 <= N <= 100), which is the number of villages. Then come N lines, the i-th of which contains N integers, and the j-th of these N integers is the distance (the distance should be an integer within [1, 1000]) between village i and village j.

Then there is an integer Q (0 <= Q <= N * (N + 1) / 2). Then come Q lines, each line contains two integers a and b (1 <= a < b <= N), which means the road between village a and village b has been built.

Output
You should output a line contains an integer, which is the length of all the roads to be built such that all the villages are connected, and this value is minimum.

Sample Input
3
0 990 692
990 0 179
692 179 0
1
1 2

Sample Output
179

题目大意:就是村庄修路,有n个村庄让你把所有村庄连接起来,并且开销最低,可以直接用最小生成树做,还有他给定了有部分路是已经修好了的。
思路:将已经修好的赋值为0,然后求出最小生成树的权值总和。
代码(c++):

#include<iostream>
#include<algorithm>
#include<string.h>
using namespace std;
const int maxsize=0x3f3f3f3f;
int mp[108][108];
int book[108];
int dis[108];
int n;
int debug;
void prime(int begin)
{
	book[1]=1;
	int sum=0;
	int start=begin;
	for(int i=1;i<=n;i++)
	{
		dis[i]=mp[start][i];
	//	cout<<dis[i]<<"  ";
	}
	for(int o=1;o<=n-1;o++)
	{
		int minn=maxsize;
		for(int i=1;i<=n;i++)
		{
			if(dis[i]<minn&&book[i]==0)
			{
				start=i;
				minn=dis[i];
			}
		//	cout<<minn<<endl;
		}
			sum+=minn;
		book[start]=1;
		for(int i=1;i<=n;i++)
		{
			if(book[i]==0&&mp[start][i]<dis[i])
			dis[i]=mp[start][i];
		}
	}
	cout<<sum<<endl;
}
int main()
{
	while(cin>>n)
	{
		int debug=0;
		memset(dis,88,sizeof(dis));
		memset(book,0,sizeof(book));
		for(int i=1;i<=n;i++)
		{
			for(int j=1;j<=n;j++)
			{
				int v;cin>>v;
				mp[i][j]=v;
			}
		}
		cin>>debug;
		for(int j=1;j<=debug;++j)
		{
			int a,b;
			cin>>a>>b;
			mp[a][b]=mp[b][a]=0;
		}
		prime(1);
	}
}
全部评论

相关推荐

05-12 11:09
已编辑
门头沟学院 后端
已注销:没必要放这么多专业技能的描述。这些应该是默认已会的,写这么多行感觉在凑内容。项目这块感觉再包装包装吧,换个名字,虽然大家的项目基本都是网上套壳的,但是你这也太明显了。放一个业务项目,再放一个技术项目。技术项目,例如中间件的一些扩展和尝试。
点赞 评论 收藏
分享
05-11 11:48
河南大学 Java
程序员牛肉:我是26届的双非。目前有两段实习经历,大三上去的美团,现在来字节了,做的是国际电商的营销业务。希望我的经历对你有用。 1.好好做你的CSDN,最好是直接转微信公众号。因为这本质上是一个很好的展示自己技术热情的证据。我当时也是烂大街项目(网盘+鱼皮的一个项目)+零实习去面试美团,但是当时我的CSDN阅读量超百万,微信公众号阅读量40万。面试的时候面试官就告诉我说觉得我对技术挺有激情的。可以看看我主页的美团面试面经。 因此花点时间好好做这个知识分享,最好是单拉出来搞一个板块。各大公司都极其看中知识落地的能力。 可以看看我的简历对于博客的描述。这个帖子里面有:https://www.nowcoder.com/discuss/745348200596324352?sourceSSR=users 2.实习经历有一些东西删除了,目前看来你的产出其实很少。有些内容其实很扯淡,最好不要保留。有一些点你可能觉得很牛逼,但是面试官眼里是减分的。 你还能负责数据库表的设计?这个公司得垃圾成啥样子,才能让一个实习生介入数据库表的设计,不要写这种东西。 一个公司的财务审批系统应该是很稳定的吧?为什么你去了才有RBAC权限设计?那这个公司之前是怎么处理权限分离的?这些东西看着都有点扯淡了。 还有就是使用Redis实现轻量级的消息队列?那为什么这一块不使用专业的MQ呢?为什么要使用redis,这些一定要清楚, 就目前看来,其实你的这个实习技术还不错。不要太焦虑。就是有一些内容有点虚了。可以考虑从PR中再投一点产出
点赞 评论 收藏
分享
06-12 17:07
沈阳大学 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务