Floyd算法(最短路;例题UVA10048)

Floyd算法:求最短路的一种算法(最暴力的方法)复杂度O(n3)

特点:速度慢,但是任意起点的(与Dijkstra不同),程序不难,但很多题目都是变式,需要较深的理解(原理是动态规划)

标程:

#include <cstdio>
#include <iostream>
#define INF 0x3f3f3f3f
using namespace std;
int n,m,t,a,b,c;
int f[105][105];

int main()
{
	//有n个端点,m条边 
	cin >> n >> m >> t;
	//初始化 
	for (int i=1;i<=n;i++)
		for (int j=1;j<=n;j++)
		{
			if (i==j) f[i][j]=0;
			else f[i][j]=INF;
		}
	//输入边 
	for (int i=1;i<=m;i++)
	{
		scanf("%d%d%d",&a,&b,&c);
		f[a][b]=c;
	}
	//核心代码 
	for (int k=1;k<=n;k++)
		for (int i=1;i<=n;i++)
			for (int j=1;j<=n;j++)
				f[i][j]=min(f[i][j],f[i][k]+f[k][j]);
	//查询 
	for (int i=1;i<=t;i++) 
	{
		scanf("%d%d",&a,&b);
		printf("%d\n",f[a][b]);		
	}
	return 0;
}

 

核心代码(4行):

 

for (int k=1;k<=n;k++)
	for (int i=1;i<=n;i++)
		for (int j=1;j<=n;j++)
			f[i][j]=min(f[i][j],f[i][k]+f[k][j]);

例题(UVA10048):

Consider yourself lucky! Consider yourself lucky to be still breathing and having fun participating in
this contest. But we apprehend that many of your descendants may not have this luxury. For, as you
know, we are the dwellers of one of the most polluted cities on earth. Pollution is everywhere, both in
the environment and in society and our lack of consciousness is simply aggravating the situation.
However, for the time being, we will consider only one type of pollution - the sound pollution. The
loudness or intensity level of sound is usually measured in decibels and sound having intensity level 130
decibels or higher is considered painful. The intensity level of normal conversation is 6065 decibels and
that of heavy traffic is 7080 decibels.
Consider the following city map where the edges refer to streets and the nodes refer to crossings.
The integer on each edge is the average intensity level of sound (in decibels) in the corresponding street.
To get from crossing A to crossing G you may follow the following path: A-C-F-G. In that case
you must be capable of tolerating sound intensity as high as 140 decibels. For the paths A-B-E-G,
A-B-D-G and A-C-F-D-G you must tolerate respectively 90, 120 and 80 decibels of sound intensity.
There are other paths, too. However, it is clear that A-C-F-D-G is the most comfortable path since
it does not demand you to tolerate more than 80 decibels.
In this problem, given a city map you are required to determine the minimum sound intensity level

you must be able to tolerate in order to get from a given crossing to another.

 

Input
The input may contain multiple test cases.
The rst line of each test case contains three integers C( 100), S( 1000) and Q( 10000) where
C indicates the number of crossings (crossings are numbered using distinct integers ranging from 1 to
C), S represents the number of streets and Q is the number of queries.
Each of the next S lines contains three integers: c1; c2 and d indicating that the average sound
intensity level on the street connecting the crossings c1 and c2 (c1 ̸= c2) is d decibels.
Each of the next Q lines contains two integers c1 and c2 (c1 ̸= c2) asking for the minimum sound
intensity level you must be able to tolerate in order to get from crossing c1 to crossing c2.

The input will terminate with three zeros form C, S and Q.

 

Output
For each test case in the input rst output the test case number (starting from 1) as shown in the
sample output. Then for each query in the input print a line giving the minimum sound intensity level
(in decibels) you must be able to tolerate in order to get from the rst to the second crossing in the
query. If there exists no path between them just print the line \no path".

Print a blank line between two consecutive test cases.

 

Sample Input
7 9 3
1 2 50
1 3 60
2 4 120
2 5 90
3 6 50
4 6 80
4 7 70
5 7 40
6 7 140
1 7
2 6
6 2
7 6 3
1 2 50
1 3 60
2 4 120
3 6 50
4 6 80
5 7 40
7 5
1 7
2 4

0 0 0

 

Sample Output
Case #1
80
60
60
Case #2
40
no path

80

这个题的输出是真的很严格(复制粘贴导致格式有误建议看源文件)

一个Floyd的变形,状态转移方程为G[i][j]=min(G[i][j],max(G[i][k],G[k][j]))

#include <cstdio>
#include <iostream>
#include <cstring>
#include <algorithm>
const int inf=0x3f3f3f3f,MAX=105;
using namespace std;
int c,s,q,cnt=0,u,v,w,flag=0;
int G[MAX][MAX];

void floyd()
{
	for (int k=1;k<=c;k++)
		for (int i=1;i<=c;i++)
			for (int j=1;j<=c;j++)
				G[i][j]=min(G[i][j],max(G[i][k],G[k][j])); //floyd变形
}

int main()
{
	//freopen("A.in","r",stdin);
	//freopen("A.out","w",stdout);
	while(cin>>c>>s>>q&&c+s+q)
	{
		if (flag) printf("\n");
		else flag=1;
		memset(G,inf,sizeof(G));
		for (int i=1;i<=s;i++)
		{
			scanf("%d%d%d",&u,&v,&w);
			G[u][v]=G[v][u]=w;
		}
		floyd();
		printf("Case #%d\n",++cnt);
		for (int i=1;i<=q;i++)
		{
			scanf("%d%d",&u,&v);
			if (G[u][v]==inf)
				printf("no path\n");
			else
				printf("%d\n",G[u][v]);
		} 
		//printf("\n"); 
	}
	return 0;
}

 

posted on 2018-06-05 23:57  Radium_1209  阅读(342)  评论(0)    收藏  举报

导航