2015-2016 ACM-ICPC Nordic Collegiate Programming Contest (NCPC 2015) Adjoin the Networks (树的直径)

2015-2016 ACM-ICPC Nordic Collegiate Programming Contest (NCPC 2015) Adjoin the Networks (树的直径)_第1张图片2015-2016 ACM-ICPC Nordic Collegiate Programming Contest (NCPC 2015) Adjoin the Networks (树的直径)_第2张图片

题目大意:有n个点m条边,现在希望将所有的点连接在一起,且要求生成的树的直径尽可能小,问树的直径最小的最大值多少

解题思路:对于目前每个独立的树,求出其的直径,对直径进行排序,为了让最后的树的直径尽可能的小,能做的就是每次将每个树的直径的一半都连接起来,于是最后的答案就从三种情况下出现,第一个情况就是最长的那个树的直径就是最后答案,第二个情况就是最长的直径的一半加次长的直径的一半+1,第三个情况就是次长一半加上次次长的一半+2就是答案

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;
typedef long long LL;

vector tu[100005];
int n,m;
int check[100005],dis[100005],vis[100005];
int ans[100005], t;
int bfs1(int x)
{
	int i,k,u,flag;
	int MAX = 0;
	flag=x;
	vis[x]=1;
	queue qua;
	qua.push(x);
	dis[x]=0;
	while(!qua.empty())
	{
		k=qua.front();
		qua.pop();
		for(i=0;i qua;
	qua.push(x);
	dis[x]=0;
	while(!qua.empty())
	{
		k=qua.front();
		qua.pop();
		for(i=0;iy;
}
int main()
{
	int i,x,y;
	cin>>n>>m;
	for(i=1;i<=m;i++)
	{
		cin>>x>>y;
		tu[x].push_back(y);
		tu[y].push_back(x);
	}	
	memset(vis,0,sizeof(vis));
	for(i=0;i



你可能感兴趣的:(ACM,树,ACM-ICPC真题)