单源最短路:bfs()+邻接表模板(邻接表2种方法构建)

这篇博客主要介绍了如何利用C++实现基于邻接表的BFS算法解决从1到n的最短路径问题。给出了两种不同的邻接表构建方式,并提供了示例输入和输出,帮助理解题意。代码中包含了邻接表的动态构建和最短路径搜索的过程。
摘要由CSDN通过智能技术生成

题目:On Average They’re Purple

牛客提交链接

在这里插入图片描述
在这里插入图片描述
示例1
输入

3 3
1 3
1 2
2 3

输出

0

示例2
输入

7 8
1 2
1 3
2 4
3 4
4 5
4 6
5 7
6 7

输出

3

题意:

——求1到n的最短路,再减1即可。题意可能不太容易明白,多琢磨琢磨。

代码1:(vector容器构建邻接表)

#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<queue>
#include<vector>
using namespace std;
const int N=110000;
const int M=110000;
vector<int> vt[N];//
int book[N];
int n,m;
struct Node{
	int x,s;
};
void bfs()
{
	queue<Node> Q;
	struct Node u,v;
	memset(book,0,sizeof(book));
	book[1]=1;
	u.x=1;
	u.s=0;
	Q.push(u);
	int x,s,tx,ts,i;
	while(!Q.empty())
	{
    	u=Q.front();
    	Q.pop();
    	x=u.x;
    	s=u.s;
    	if(x==n)
    	{
        	printf("%d\n",s-1);
        	return;
    	}
    	for(i=0;i<vt[x].size();i++)
    	{
        	tx=vt[x][i];
        	ts=s+1;
        	if(book[tx]==0)
        	{
            	book[tx]=1;
            	v.x=tx;
            	v.s=ts;
            	Q.push(v);
        	}
    	}
	}
}
int main()
{  
	scanf("%d %d",&n,&m);
	while(m--)
	{
    	int a,b;
    	scanf("%d %d",&a,&b);
    	vt[a].push_back(b);
    	vt[b].push_back(a);
	}
	bfs();
	return 0;
}

代码2:(数组模拟构建邻接表)

#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<queue>
#include<vector>
using namespace std;
const int N=110000;
const int M=110000;
int first[N],nx[2*M],to[2*M];
int book[N];
int n,m,head;
struct Node{
	int x,s;
};
void add(int x,int y)
{
	nx[head]=first[x];
	first[x]=head;
	to[head++]=y;
}
void bfs()
{
	queue<Node> Q;
	struct Node u,v;
	memset(book,0,sizeof(book));
	book[1]=1;
	u.x=1;
	u.s=0;
	Q.push(u);
	int x,s,tx,ts,i;
	while(!Q.empty())
	{
		u=Q.front();
		Q.pop();
		x=u.x;
		s=u.s;
		if(x==n)
		{
			printf("%d\n",s-1);
			return;
		}
		for(i=first[x];i!=-1;i=nx[i])
		{
			tx=to[i];
			ts=s+1;
			if(book[tx]==0)
			{
				book[tx]=1;
				v.x=tx;
				v.s=ts;
				Q.push(v);
			}
		}
	}
}
int main()
{	
	head=1;
	memset(first,-1,sizeof(first));
	scanf("%d %d",&n,&m);
	while(m--)
	{
		int a,b;
		scanf("%d %d",&a,&b);
		add(a,b);
		add(b,a);
	}
	bfs();
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值