2020寒假集训排位赛 Bucket Brigade 题解(bfs)

专题链接:https://codeforces.com/group/5yyKg9gx7m/contest/269908/problem/G

思路

简单的bfs,没啥好说的,套板子就完事了

#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<string>
#include<map>
#include<cstring>
#include<climits>
#include<vector>
#include<queue>
#include<stack>
#define lowbit(i) ((i)&(-(i)))
#define ll long long
using namespace std;
int f[5][2] = { {0,0}, {0,1}, {0,-1}, {-1,0},{1,0} };//代表四个方向
char m[11][11];
int nx, ny;
struct node
{
	int x;
	int y;
	int co;
}t,u;
queue <node>que;
int ans;
void bfs()
{
	while (que.size())
	{
		u = que.front();
		que.pop();
		for (int k = 1; k <= 4; k++)
		{
			nx = u.x + f[k][0];
			ny = u.y + f[k][1];
			if ((nx <=10) && (nx >=1) && (ny <=10) && (ny >=1 ))
			{
				if (m[nx][ny] == '.')
				{
					m[nx][ny] = '*';
					t.x = nx;
					t.y = ny;
					t.co = u.co + 1;
					que.push(t);
				}
				else if (m[nx][ny] == 'B')
				{
					ans = u.co;
					return;
				}
			}
		}
	}
};
int main()
{
	for (int i = 1; i <= 10; i++)
		scanf("%s", m[i] + 1);
	for (int i = 1; i <=10; i++)
	{
		for (int j = 1; j <= 10; j++)
		{
			if (m[i][j] == 'L')
			{
				t.x = i;
				t.y = j;
				t.co = 0;
				que.push(t);
                bfs();
				printf("%d\n",ans);
				return 0;
			}
		}
	}
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值