IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 14. Floyd + 朴素版Dijkstra -> 正文阅读

[数据结构与算法]14. Floyd + 朴素版Dijkstra

Floyd(多源最短路径)(O(n^3))

练习

A - 最短路 HDU - 2544 (模板)

在每年的校赛里,所有进入决赛的同学都会获得一件很漂亮的t-shirt。但是每当我们的工作人员把上百件的衣服从商店运回到赛场的时候,却是非常累的!所以现在他们想要寻找最短的从商店到赛场的路线,你可以帮助他们吗?
Input
输入包括多组数据。每组数据第一行是两个整数N、M(N<=100,M<=10000),N表示成都的大街上有几个路口,标号为1的路口是商店所在地,标号为N的路口是赛场所在地,M则表示在成都有几条路。N=M=0表示输入结束。接下来M行,每行包括3个整数A,B,C(1<=A,B<=N,1<=C<=1000),表示在路口A与路口B之间有一条路,我们的工作人员需要C分钟的时间走过这条路。
输入保证至少存在1条商店到赛场的路线。
Output
对于每组输入,输出一行,表示工作人员从商店走到赛场的最短时间
Sample Input
2 1
1 2 3
3 3
1 2 5
2 3 5
3 1 2
0 0
Sample Output
3
2
AC代码:

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cmath>
using namespace std;
const int MAX=0x3f3f3f3f;
int n,m,a,b,c;
int dis[110][110];	//记录两点间最短距离 

void floyd()
{
	for(int k=1;k<=n;k++)	//中间点(必须放最外围) 
	{
		for(int i=1;i<=n;i++)
		{
			for(int j=1;j<=n;j++)
				dis[i][j]=min(dis[i][j],dis[i][k]+dis[k][j]);
				//如果存在点k使得i到k的距离+k到j的距离比i到j的距离小,就更新i、j之间最短距离 
		}
	}
}

int main()
{
	while(cin>>n>>m&&(m+n)) 
	{
		for(int i=1;i<=n;i++)
		{
			for(int j=1;j<=n;j++)
			{
				if(i==j)	dis[i][j]=0;
				else   	dis[i][j]=MAX;	//初始化任意两点间距离为无穷 
			}
		}
		
		while(m--)
		{
			cin>>a>>b>>c;
			dis[a][b]=min(dis[a][b],c);	//邻接矩阵 记录两点间距离(取最小) 
			dis[b][a]=dis[b][a];	//无向图 
		}
		
		floyd();
		cout<<dis[1][n]<<endl;	//1到n的最小距离 
	}
	return 0;
}

F - Cow Contest POJ - 3660 (微变形)

N (1 ≤ N ≤ 100) cows, conveniently numbered 1…N, are participating in a programming contest. As we all know, some cows code better than others. Each cow has a certain constant skill rating that is unique among the competitors.
The contest is conducted in several head-to-head rounds, each between two cows. If cow A has a greater skill level than cow B (1 ≤ A ≤ N; 1 ≤ B ≤ N; A ≠ B), then cow A will always beat cow B.
Farmer John is trying to rank the cows by skill level. Given a list the results of M (1 ≤ M ≤ 4,500) two-cow rounds, determine the number of cows whose ranks can be precisely determined from the results. It is guaranteed that the results of the rounds will not be contradictory.
Input

  • Line 1: Two space-separated integers: N and M
  • Lines 2…M+1: Each line contains two space-separated integers that describe the competitors and results (the first integer, A, is the winner) of a single round of competition: A and B
    Output
  • Line 1: A single integer representing the number of cows whose ranks can be determined
    Sample Input
    5 5
    4 3
    4 2
    3 2
    1 2
    2 5
    Sample Output
    2
    AC代码:
#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
int n,m;
bool arr[110][110];
int cnt[110],ans;

void floyd()
{
	//传递闭包 
	for(int k=1;k<=n;k++)
	{
		for(int i=1;i<=n;i++)
		{
			for(int j=1;j<=n;j++)
				arr[i][j]=arr[i][j]||(arr[i][k]&&arr[k][j]);
				//如果i等级高于k且k等级高于i 或者 已经知道i等级高于j 
		}
	}
}

int main()
{
	ans=0;	 
	memset(arr,0,sizeof(arr));	//记录状态,有关系为1,没关系为0 
	memset(cnt,0,sizeof(cnt));	//记录与可以与i确认等级高低的人的数量 
	
	cin>>n>>m;
	while(m--)
	{
		int a,b;
		cin>>a>>b;
		arr[a][b]=1;
	}
	
	floyd();
	
	for(int i=1;i<=n;i++)
	{
		for(int j=1;j<=n;j++)
		{
			if((arr[i][j]||arr[j][i])&&i!=j)	//如果i等级高于j或j等级高于i 
				cnt[i]++;
		}
		if(cnt[i]==n-1)	ans++;
	}
	
	cout<<ans<<endl;
	return 0;
}

C - 一个人的旅行 HDU - 2066 (Floyd+剪枝)

虽然草儿是个路痴(就是在杭电待了一年多,居然还会在校园里迷路的人,汗~),但是草儿仍然很喜欢旅行,因为在旅途中 会遇见很多人(白马王子,0),很多事,还能丰富自己的阅历,还可以看美丽的风景……草儿想去很多地方,她想要去东京铁塔看夜景,去威尼斯看电影,去阳明山上看海芋,去纽约纯粹看雪景,去巴黎喝咖啡写信,去北京探望孟姜女……眼看寒假就快到了,这么一大段时间,可不能浪费啊,一定要给自己好好的放个假,可是也不能荒废了训练啊,所以草儿决定在要在最短的时间去一个自己想去的地方!因为草儿的家在一个小镇上,没有火车经过,所以她只能去邻近的城市坐火车(好可怜啊~)。
Input
输入数据有多组,每组的第一行是三个整数T,S和D,表示有T条路,和草儿家相邻的城市的有S个,草儿想去的地方有D个;
接着有T行,每行有三个整数a,b,time,表示a,b城市之间的车程是time小时;(1=<(a,b)<=1000;a,b 之间可能有多条路)
接着的第T+1行有S个数,表示和草儿家相连的城市;
接着的第T+2行有D个数,表示草儿想去地方。
Output
输出草儿能去某个喜欢的城市的最短时间。
Sample Input
6 2 3
1 3 5
1 4 7
2 8 12
3 8 4
4 9 12
9 10 2
1 2
8 9 10
Sample Output
9
AC代码:
多源最短路径,这里城市标号范围到1000,Floyd时间复杂度n^3,不剪枝的话会TLE。
还有个点是Floyd里面三重循环的那个ijk不要轻易动,除了剪枝还是让它去遍历每一个点。(wa了无数发后学的教训呜呜呜)
我居然改了之后还沾沾自喜想自己真聪明别人肯定都想不到呜呜呜天呐怎么会有我这么蠢的人

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <cstdio>
using namespace std;
const int MAX=0x3f3f3f3f;
int t,s,d,a,b,n,time,ans;
int dis[1100][1100];
int cs[1100];

void floyd()
{
	for(int k=1;k<=n;k++)
	{
		for(int i=1;i<=n;i++)	//注意这里i以及下面j是遍历1到n而不是仅仅遍历cs里的城市,会有缺失 
		{
			if(dis[i][k]==MAX)	continue;	//剪枝,如果i、k不可达 
			for(int j=1;j<=n;j++)
			{
				if(dis[k][j]==MAX)	continue;	//同上 
				dis[i][j]=min(dis[i][j],dis[i][k]+dis[k][j]);
			}
		}
	}
}

int main()
{
	while(scanf("%d%d%d",&t,&s,&d)!=EOF)
	{
		//初始化 
		memset(cs,0,sizeof(cs));
		for(int i=1;i<1100;i++)
		{
			for(int j=1;j<1100;j++)
			{
				if(i==j)	dis[i][j]=0;
				else	dis[i][j]=MAX;
			}
		}
		n=0,ans=MAX; 
		
		while(t--)
		{
			scanf("%d%d%d",&a,&b,&time);
			dis[a][b]=min(dis[a][b],time);
			dis[b][a]=dis[a][b];	//无向 
			n=max(n,max(a,b));		//记录出现的标号最大的城市,后续floyd节省时间 
		}
		for(int i=1;i<=s+d;i++)		scanf("%d",&cs[i]);		//记录周边城市以及想去的城市标号 
		
		floyd();	//多源最短路算法 
		for(int i=1;i<=s;i++)	//遍历周边每座城市与每个目标城市的组合 
		{
			for(int j=s+1;j<=s+d;j++)
				ans=min(dis[cs[i]][cs[j]],ans);		//取最小值 
		}
		printf("%d\n",ans);
	}
	return 0;
}

Dijkstra算法朴素版 (单源最短路径)(O(n^2))

练习

I - Til the Cows Come Home POJ - 2387 (模板)

兔子很热爱学习,为了多学习她希望可以找最快的路线去上学。她的城市里有N个(2 <= N <= 1000)个地铁站,编号分别为1…N。兔子家在1号地铁站旁边,学校是N号地铁站。地铁站之间共有M (1 <= M <= 2000)条双向路径。兔子现在在1号地铁站,她希望知道到学校最短需要多少时间。可以保证兔子能到达学校。忽略换乘地铁的等待时间
Input
第一行:m和n
接下来的m行:每一行有x,y,z三个整数。代表x站到y站或者y站到x站需要z分钟(1<=z<=100)
Output
兔子到学校最少需要多少时间。
Sample Input
5 5
1 2 20
2 3 30
3 4 20
4 5 20
1 5 100
Sample Output
90
AC代码:
这道题N到1000,直接Floyd肯定超时,感觉与c题差不多,剪枝应该能过,既然这样…就用dijkstra来写⑧🤪🤪

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <cstdio>
using namespace std;
const int MAX=0x3f3f3f3f;
int t,n,a,b,x;
int dis[1010],dq[1010][1010];
bool vis[1010];

void dijkstra()
{
	dis[1]=0;	//起始点 
	vis[1]=1;	
	for(int i=1;i<=n;i++)
	{
		int minn=MAX;	//当前 未加入 已找到最短距离的的集合 的 所有点中 到源点距离的 最小值 
		int t=0;	//新找到的到源点距离最短的点 
		
		for(int j=1;j<=n;j++)
		{
			if(vis[j]==0&&minn>dis[j])
			{
				minn=dis[j];
				t=j;
			}
		}
		vis[t]=1;	 //标记该点已经被找到 
		
		for(int j=1;j<=n;j++)	//已新找到的点为基础更新剩余点到源点的距离 
		{
			if(vis[j]==0)
				dis[j]=min(dis[j],dis[t]+dq[t][j]);
		}
	}
}

int main()
{
	//初始化 
	memset(vis,0,sizeof(vis));
	for(int i=1;i<=n;i++)
	{
		dis[i]=MAX;
		for(int j=1;j<=n;j++)
		{
			if(i==j)	dq[i][j]=0;
			else	dq[i][j]=MAX;	//初始化任意两点间的距离为无穷 
		}
	}
	
	scanf("%d%d",&t,&n);
	while(t--)
	{
		scanf("%d%d%d",&a,&b,&x);
		dq[a][b]=min(dq[a][b],x);	//取两点间距离最小边 
		dq[b][a]=dq[a][b];		//无向图 
	}
	
	for(int i=1;i<=n;i++)	
		dis[i]=dq[1][i];	//每个点到源点的距离 
	
	dijkstra();	//单源最短路算法 
	
	printf("%d\n",dis[n]);
	return 0;
}

D - Choose the best route HDU - 2680 (记录一个奇奇怪怪的wa点)

One day , Kiki wants to visit one of her friends. As she is liable to carsickness , she wants to arrive at her friend’s home as soon as possible . Now give you a map of the city’s traffic route, and the stations which are near Kiki’s home so that she can take. You may suppose Kiki can change the bus at any station. Please find out the least time Kiki needs to spend. To make it easy, if the city have n bus stations ,the stations will been expressed as an integer 1,2,3…n.
Input
There are several test cases.
Each case begins with three integers n, m and s,(n<1000,m<20000,1=<s<=n) n stands for the number of bus stations in this city and m stands for the number of directed ways between bus stations .(Maybe there are several ways between two bus stations .) s stands for the bus station that near Kiki’s friend’s home.
Then follow m lines ,each line contains three integers p , q , t (0<t<=1000). means from station p to station q there is a way and it will costs t minutes .
Then a line with an integer w(0<w<n), means the number of stations Kiki can take at the beginning. Then follows w integers stands for these stations.
Output
The output contains one line for each data set : the least time Kiki needs to spend ,if it’s impossible to find such a route ,just output “-1”.
Sample Input
5 8 5
1 2 2
1 5 3
1 3 4
2 4 7
2 5 6
2 3 5
3 5 1
4 5 1
2
2 3
4 3 4
1 2 3
1 3 4
2 3 2
1
1
Sample Output
1
-1
AC代码:

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <cstdio>
using namespace std;
const int N=1100;
const int MAX=0x3f3f3f3f;
int n,m,s,p,q,t,w;
int st[N],dis[N],dq[N][N];
bool vis[N];

void dijkstra()
{
	vis[s]=1;
	dis[s]=0;
//	int kk=s;	//这里一定要定义在for循环外,不然会wa(才怪!!!)好奇怪好奇怪 
	for(int i=1;i<=n;i++)
	{
		int minn=MAX,kk=1;	//破案了破案了,主要得给kk赋一个初值(不能小于1??) 
		for(int j=1;j<=n;j++)
		{
			if(vis[j]==0&&dis[j]<minn)
			{
				minn=dis[j];
				kk=j;
			}
		}
		vis[kk]=1;
		for(int j=1;j<=n;j++)
		{
			if(vis[j]==0)
				dis[j]=min(dis[j],dis[kk]+dq[kk][j]);
		}
	}
}

int main()
{
	while(scanf("%d%d%d",&n,&m,&s)!=EOF)
	{
		int ans=MAX;
		for(int i=1;i<=n;i++)
		{
			dis[i]=MAX;
			for(int j=1;j<=n;j++)
			{
				if(i==j)	dq[i][j]=0;
				else	dq[i][j]=MAX;
			}
		}
		memset(st,0,sizeof(st));
		memset(vis,0,sizeof(vis));
		
		while(m--)
		{
			scanf("%d%d%d",&p,&q,&t);
			dq[q][p]=min(dq[q][p],t);
		}
		
		scanf("%d",&w);
		for(int i=0;i<w;i++)
			scanf("%d",&st[i]);
		
		for(int i=1;i<=n;i++)
			dis[i]=dq[s][i];
				
		dijkstra();
		
		for(int i=0;i<w;i++)
			ans=min(ans,dis[st[i]]);
		if(ans==MAX)	printf("-1\n");
		else		printf("%d\n",ans);
	}
	return 0;
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2021-08-07 12:20:33  更:2021-08-07 12:23:03 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 19:18:56-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码