码迷,mamicode.com
首页 > 其他好文 > 详细

HDU ACM 1530 Maximum Clique->最大团

时间:2015-05-01 13:27:54      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:c   c++   acm   算法   图论   

分析:最大团的模版题,DFS深搜。

#include<iostream>
using namespace std;

#define N 55
int map[N][N];
int set[N];
int max;

bool IsConnect(int end,int v)
{
	int i;

	for(i=0;i<end;i++)
		if(!map[set[i]][v])
			return false;
	return true;
}

void DFS(int depth,int u,int n)
{
	int i;

	if(depth+(n-(u-1))<=max)  //剪枝,后面不比前面的大则不用找了
		return ;

	for(i=u;i<=n;i++)
		if(IsConnect(depth,i))
		{
			set[depth]=i;
			DFS(depth+1,i+1,n);    //递归搜索后序节点
		}

	if(depth>max)       //更新最大值
		max=depth;
}

int main()
{
	int n,i,j;

	while(scanf("%d",&n)==1 && n)
	{
		for(i=1;i<=n;i++)
			for(j=1;j<=n;j++)
				scanf("%d",&map[i][j]);

		max=0;
		DFS(0,1,n);             //从第0层第一个顶点开始搜
		printf("%d\n",max);
	}
	return 0;
}


HDU ACM 1530 Maximum Clique->最大团

标签:c   c++   acm   算法   图论   

原文地址:http://blog.csdn.net/a809146548/article/details/45418827

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!