UVa140宽带

#include<stdio.h>
#include<string.h>
int gra[30][30];
int node[30];
int numnd;
int ndpos[30];
int order[30];
int minwid;
int ans[30];
char input[300];
void dfs(int cur,int max)
{
	if(cur == numnd)
	{
		if(max < minwid)
		{
			minwid = max;
			memcpy(ans, order, sizeof(ans));
		}
		return;
	}
	for(int i=0; i < 30; ++i)
	{
		if(node[i] == 1) //in the graph
		{
			node[i] = 2; //in the order
			order[cur] = i;
			ndpos[i] = cur; 
			int v;
			int imax = max ;
			int dist;
			for(v=0; v < 30; ++v)
			{
				if(gra[i][v] && node[v]==2)
				{
					dist = cur-ndpos[v];
					imax = imax>dist ? imax:dist;
				}
			}
			if(imax < minwid)
			{
				dfs(cur+1, imax);
			}
			node[i] = 1;
		}
	}
}
int main()
{
	//
	freopen("input.txt","r",stdin);
	while(scanf("%s", input) == 1)
	{
		if(!strcmp(input,"#"))
			break;
		char* pt = input;
		char* maohao;
		char* fenhao;
		bool loop = true; //go on 
		int u;
		memset(gra, 0, sizeof(gra));
		memset(node, 0, sizeof(node));
		while(loop)
		{
			maohao = strchr(pt,':');
			fenhao = strchr(pt,';');
		    if(!fenhao)
			{
				loop = false;
				fenhao = input+strlen(input);
			}
			u = *(maohao-1)-'A';
			node[u] = 1;
			++maohao;
			while(maohao < fenhao)
			{
				gra[u][*maohao-'A']=gra[*maohao-'A'][u]=1;
				node[*maohao-'A'] = 1;
				++maohao;
			}
			pt = fenhao+1;
		}
		numnd = 0;
		for(int i=0; i < 30; ++i)
		{
			if(node[i])
				numnd++;
		}

		minwid = 1000000;
		dfs(0,0);
		for(int i=0; i < numnd; ++i)
		{
			printf("%c ",ans[i]+'A');
		}
		printf("-> %d\n", minwid);
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值