迷宫 2020蓝桥杯b组模拟

对于下面这个迷宫(30 行 50 列),我们可以从最上方一行的任意一个格子作为入口;以最下方一行的任意一个格子作为出口。请找出通过迷宫步数最少的路径有多少条。
01010101001011001001010110010110100100001000101010
00001000100000101010010000100000001001100110100101
01111011010010001000001101001011100011000000010000
01000000001010100011010000101000001010101011001011
00011111000000101000010010100010100000101100000000
11001000110101000010101100011010011010101011110111
00011011010101001001001010000001000101001110000000
10100000101000100110101010111110011000010000111010
00111000001010100001100010000001000101001100001001
11000110100001110010001001010101010101010001101000
00010000100100000101001010101110100010101010000101
11100100101001001000010000010101010100100100010100
00000010000000101011001111010001100000101010100011
10101010011100001000011000010110011110110100001000
10101010100001101010100101000010100000111011101001
10000000101100010000101100101101001011100000000100
10101001000000010100100001000100000100011110101001
00101001010101101001010100011010101101110000110101
11001010000100001100000010100101000001000111000010
00001000110000110101101000000100101001001000011101
10100101000101000000001110110010110101101010100001
00101000010000110101010000100010001001000100010101
10100001000110010001000010101001010101011111010010
00000100101000000110010100101001000001000000000010
11010000001001110111001001000011101001011011101000
00000110100010001000100000001000011101000000110011
10101000101000100010001111100010101001010000001000
10000010100101001010110000000100101010001011101000
00111100001000010000000110111000000001000000001011
10000001100111010111010001000110111010101101111000
答案 3
思路:枚举每个起点,利用bfs查找每个起点到终点的最短路径,记录最短路径数和最短路径步数。因为本题需要最短路径数,故应记录每一个最短路径

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int b[33][55],next[4][2]={0,1,1,0,0,-1,-1,0};
int ans,min=1e9+1,ANS,MIN=1e9;//MIN为最短路径步数 ANS为最短路径数
char a[33][55];
struct dalao
{
	int q,w,s;  //用结构体储存路径信息
}st[2000000];   //一个点会重复入栈,所以空间开得大一些
void bfs(int x,int y)
{
	int tx,ty,ts;
	int head=0,tail=0;
	min =1e9+1;  
	ans =0;
	memset(b,127,sizeof(int )*33*55); //为b数组赋值一个大数
	st[head].q =x;
	st[head].w =y;
	st[head].s =0;
	tail++;
	while(tail>head)
	{
		for(int i=0;i<4;i++)
		{
			tx=st[head].q +next[i][0];
			ty=st[head].w +next[i][1];
			ts=st[head].s +1;
			if(ts>b[tx][ty]||a[tx][ty]=='1'||tx<0||tx>=30||ty<0||ty>=50)	continue;
			b[tx][ty]=ts;//此点可以重复走,前提是到达此点时步数应不大于b[tx][ty],否则不可能为最短路径。
			st[tail].q =tx;
			st[tail].w =ty;
			st[tail].s =ts;
			tail++;
			if(tx==29)
			{
				for(int j=0;j<50;j++)
					b[tx][j]=ts; //最后一行是终点
				min=ts;
				ans++;
			}
		}
		head++;
	 } 
	 if(min<MIN)
	 {
	 	MIN=min;
	 	ANS=ans;
	 }
	 else if(min==MIN)
	 {
	 	ANS+=ans;
	 }
}
int main()
{
	for(int i=0;i<30;i++)
	{
		scanf("%s",a[i]);
	}
	for(int i=0;i<50;i++)
	{
		if(a[0][i]=='0')
		{
			bfs(0,i);
		}
	}
	printf("最短路径数为%d\n最短路径步数为%d",ANS,MIN);
	return 0;
}
发布了31 篇原创文章 · 获赞 11 · 访问量 2588

猜你喜欢

转载自blog.csdn.net/guyjy/article/details/104681320