POJ2485 最短路的水题

求的是最短路中的最大边,很水啦。。

这里用的prim算法 关于prim详情见我的上一篇博客点击打开链接

#include<iostream>
#include<algorithm>
#include<cstdio>
#define INF 1e9
#define INI -1e9
using namespace std;
int closest[505],lowcost[505],m;
int G[506][506];
void read()
{
	cin>>m;
	for(int i=0;i<m;i++)
		for (int j=0;j<m;j++)
			scanf("%d",&G[i][j]);
}
void deal()//prim 算法
{
	for(int i=0;i<m;i++) { lowcost[i]=INF;}
	for(int i=0;i<m;i++) { closest[i]=0;}
	closest[0]=-1;
	int num=0,ans=INI,e=0;
	while(++num<m)
	{
		int micost=INF,miedge=-1;
		for(int i=0;i<m;i++)
		if(closest[i]!=-1)
		{
			int temp=G[i][e];
			if(temp<lowcost[i])
			{
				lowcost[i]=temp;
				closest[i]=e;
			}
			if(lowcost[i]<micost)
				micost=lowcost[miedge=i];
		}
		ans=max(ans,micost);//其实和最短路一样一样的就是这句话变了 不再是累加了而是取最大值
		closest[e=miedge]=-1;
	}
	printf("%d\n",ans);
}
int main()
{
	int T;cin>>T;
	while(T--)
	{
		read();
		deal();
	}
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值