hdu 1254 推箱子(两次广搜)

/*

这题一个下午了,现在终于过了;

用了两次广搜,一次搜箱子到目标地,第二次搜人是可以到推动箱子的地方,要注意的是箱子可能会阻挡人,也可以来回的推。

给几组数据就知道了(这题数据都是后面讨论版中提供的)

10

4 3

0 0 0

0 0 1

0 2 3

1 4 1

 

5 5

0 3 0 0 0

1 0 1 4 0

0 0 1 0 0

1 0 2 0 0

0 0 0 0 0

4 4

1 2 1 1

0 0 0 0

0 4 3 0

0 0 0 0

4 4

0 3 0 0

0 0 2 0

0 0 4 0

0 1 0 1

3 3

0 3 0

1 0 2

0 4 0

5 5

0 1 4 0 0

0 1 1 1 1

0 2 3 0 0

0 0 0 0 0

0 0 0 0 0

4 4

0 1 0 1

0 2 0 4

0 0 0 0

0 3 0 1

*/

#include<iostream>
#include<queue>
#define N 8
using namespace std;
int n, m, str[N][N], mark[N][N], pmark[N][N], dir[4][2]={1,0, -1,0, 0,1, 0,-1};
int s_x, s_y, e_x, e_y, p_x, p_y;

struct node
{
	int x, y, step, dx, dy;
};

int judge(int x, int y)
{
	if(x>=0 && x< n && y>=0 && y<m && str[x][y] != 1)
		return 1;
	else
		return 0;
}

int work(int box_x, int box_y, int end_x, int end_y, int sta_x, int sta_y)
{
	int i, x, y;
	node cur, next;
	queue<node>q2;
	cur.x = sta_x; cur.y = sta_y; cur.step=0;
	q2.push(cur);
	while(!q2.empty())
	{
		cur = q2.front();
		q2.pop();
		if(cur.x==end_x && cur.y==end_y)
			return cur.step;
		for( i=0; i < 4; i++ )
		{
			next.x = x = cur.x + dir[i][0];
			next.y = y = cur.y + dir[i][1];
			next.step = cur.step + 1;
			if(judge(x, y) && pmark[x][y]==0 && (x!=box_x || y!=box_y))
			{
				pmark[x][y] = 1;
				q2.push(next);
			}
		}
	}
	return -1;
}

int bfs()
{
	int i;
	node cur, next;
	queue<node>q1;
	cur.x=s_x; cur.y=s_y; cur.step=0;
	next.dx=cur.dx=p_x; next.dy=cur.dy=p_y;
	q1.push(cur);
	while(!q1.empty())
	{
		cur = q1.front();
		q1.pop();
		if(cur.x==e_x && cur.y==e_y)
			return cur.step;
		for( i=0; i < 4; i++ )
		{
			next.x = cur.x+dir[i][0];
			next.y = cur.y+dir[i][1];
			next.step = cur.step+1;
			//next.dx = cur.x; next.dy = cur.y;
			memset(pmark, 0, sizeof(pmark));
			int ans = work(cur.x, cur.y, cur.x-dir[i][0], cur.y-dir[i][1], cur.dx, cur.dy);
			if(ans!=-1 && judge(next.x, next.y) && mark[next.x][next.y]<=30)
			{
				mark[next.x][next.y] += 1;
				next.dx = cur.x-dir[i][0];
				next.dy = cur.y-dir[i][1];
				q1.push(next);
			}
		}
	}
	return 0;
}

int main()
{
	int T, i, j;
	scanf("%d", &T);
	while(T--)
	{
		scanf("%d%d", &n, &m);
		for( i=0; i < n; i++ )
		{
			for(j=0; j < m; j++ )
			{
				scanf("%d", &str[i][j]);
				if(str[i][j] == 2)
					s_x=i, s_y=j;
				if(str[i][j] == 3)
					e_x=i, e_y=j;
				if(str[i][j] == 4)
					p_x=i, p_y=j;
			}
		}
		memset(mark, 0, sizeof(mark));
		int ans=bfs();
		if(ans==0)
			printf("-1\n");
		else
			printf("%d\n", ans);
	}
	return 0;
}


 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值