HDU 3085 双广
n*m地图上有
‘. ’:路
‘X':墙
’Z':鬼,每秒蔓延2个单位长度,能够穿墙。共两个,每秒開始时鬼先动
‘M’:一号,每分钟可移动3个单位长度
‘G’:二号,每分钟课移动1个单位长度
问两人能否够成功碰面,再不被鬼吃掉的前提下
双向广搜。对于‘M’。每次搜三步,对于‘G’,每次搜一步。和鬼的距离可用曼哈顿距离计算推断
注意每秒開始时鬼先移动
#include "stdio.h"
#include "string.h"
#include "algorithm"
#include "queue"
using namespace std; const int dir[4][2]={ {1,0},{-1,0},{0,1},{0,-1} };
char str[810][810];
int used[2][810][810];
int g_x,g_y,m_x,m_y,n,m,step; struct node
{
int x,y;
}ncur,z[2]; queue<node>q[2]; void init()
{
int i,j,cnt;
scanf("%d%d",&n,&m);
for (i=0;i<n;i++)
scanf("%s",str[i]);
cnt=0;
for (i=0;i<n;i++)
for (j=0;j<m;j++)
{
if (str[i][j]=='G')
{
g_x=i; g_y=j;
}
if (str[i][j]=='M')
{
m_x=i; m_y=j;
}
if (str[i][j]=='Z')
{
z[cnt].x=i;
z[cnt++].y=j;
}
}
} int judge(node b)
{
if (b.x<0 || b.y<0 || b.x>=n || b.y>=m) return 0;
if (str[b.x][b.y]=='X') return 0;
if ((abs(b.x-z[0].x)+abs(b.y-z[0].y))<=2*step) return 0;
if ((abs(b.x-z[1].x)+abs(b.y-z[1].y))<=2*step) return 0;
return 1;
} int bfs(int w)
{
node cur,next;
int i,sum; sum=q[w].size();
while (sum--)
{
cur=q[w].front();
q[w].pop();
if (judge(cur)==0) continue;
for (i=0;i<4;i++)
{
next.x=cur.x+dir[i][0];
next.y=cur.y+dir[i][1];
if (judge(next)==0) continue;
if (used[w][next.x][next.y]==0)
{
if (used[w^1][next.x][next.y]==1) return 1;
used[w][next.x][next.y]=1;
q[w].push(next);
}
}
}
return 0;
}
int solve()
{
while (!q[0].empty()) q[0].pop();
while (!q[1].empty()) q[1].pop(); ncur.x=m_x;
ncur.y=m_y;
q[0].push(ncur);
ncur.x=g_x;
ncur.y=g_y;
q[1].push(ncur);
memset(used,0,sizeof(used));
used[0][m_x][m_y]=used[1][g_x][g_y]=1;
step=0; while ((!q[0].empty()) || (!q[1].empty()))
{
step++;
if (bfs(0)==1) return step;
if (bfs(0)==1) return step;
if (bfs(0)==1) return step;
if (bfs(1)==1) return step;
}
return -1; }
int main()
{
int Case;
scanf("%d",&Case);
while (Case--)
{
init();
printf("%d\n",solve());
}
return 0;
}
HDU 3085 双广的更多相关文章
- HDU 1403 Eight&POJ 1077(康拖,A* ,BFS,双广)
Eight Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submis ...
- hdu.1043.Eight (打表 || 双广 + 奇偶逆序)
Eight Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Sub ...
- hdu 1401(单广各种卡的搜索题||双广秒速)
Solitaire Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total S ...
- HDU 3085 Nightmare Ⅱ(噩梦 Ⅱ)
HDU 3085 Nightmare Ⅱ(噩梦 Ⅱ) Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Ja ...
- HDU - 3085 Nightmare Ⅱ
HDU - 3085 Nightmare Ⅱ 双向BFS,建立两个队列,让男孩女孩一起走 鬼的位置用曼哈顿距离判断一下,如果该位置与鬼的曼哈顿距离小于等于当前轮数的两倍,则已经被鬼覆盖 #includ ...
- nyoj 999——师傅又被妖怪抓走了——————【双广搜】
师傅又被妖怪抓走了 时间限制:1000 ms | 内存限制:65535 KB 难度:3 描述 话说唐僧复得了孙行者,师徒们一心同体,共诣西方.自宝象国救了公主,承君臣送出城西,沿路饥餐渴饮,悟 ...
- hdu 3085(双向bfs)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3085 思路:双向广搜,每次从M出发,搜三步,从G出发,搜一步,然后就是判断是否走到对方已经走过的格子, ...
- HDU 3085 Nightmare II 双向bfs 难度:2
http://acm.hdu.edu.cn/showproblem.php?pid=3085 出的很好的双向bfs,卡时间,普通的bfs会超时 题意方面: 1. 可停留 2. ghost无视墙壁 3. ...
- HDU 3085 Nightmare Ⅱ(双向BFS)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3085 题目大意:给你一张n*m地图上,上面有有 ‘. ’:路 ‘X':墙 ’Z':鬼,每秒移动2步,可 ...
随机推荐
- sed 手册 http://www.gnu.org/software/sed/manual/sed.html
http://www.gnu.org/software/sed/manual/sed.html
- 如何加快exp/imp的速度 - direct=y
http://blog.itpub.net/35489/viewspace-613625 Oracle9i 或 10g . 1. 内存中关系到exp的速度的是 large_pool_siz ...
- luogu P1313 计算系数
二项式定理 组合数取膜 费马小定理 #include<iostream> using namespace std; #define mod 10007 #define int long l ...
- [BZOJ 1195] 最短母串
Link:https://www.lydsy.com/JudgeOnline/problem.php?id=1195 Solution: 看到数据范围n<=12,就要往状压DP上想 为了保证后项 ...
- 北京DAY1下午
省选模拟题 周子凯 题目概况 中文题目名 简易比特币 计算 路径 英文题目名 bit calculation Path 输入文件名 bit.in calculation.in path.in 输出文件 ...
- POJ 2112 Optimal Milking(二分图匹配)
[题目链接] http://poj.org/problem?id=2112 [题目大意] 给出一些挤奶器,每台只能供给M头牛用,牛和挤奶器之间有一定的距离 现在要让每头牛都挤奶,同时最小化牛到挤奶器的 ...
- [AGC009C]Division into 2
题意: 有一个长度为$N$的递增序列$S_i$,要把它分成$X,Y$两组,使得$X$中元素两两之差不小于$A$且$Y$中元素两两之差不小于$B$,求方案数 首先考虑$O\left(n^2\right) ...
- 【kruscal】【最小生成树】【搜索】bzoj1016 [JSOI2008]最小生成树计数
不用Matrix-tree定理什么的,一边kruscal一边 对权值相同的边 暴搜即可.将所有方案乘起来. #include<cstdio> #include<algorithm&g ...
- Eclipse的workspace中放入Ext JS卡死或OOM的解决方案
Eclipse的workspace中放入Ext JS卡死或OOM的解决方案 原因:是由于Ext JS 的所有的文件js验证 方法一:关于Eclipse解决Ext JS卡死方案: 打开Eclipse的w ...
- winform如何保持TreeView节点展开和折叠的状态
转载:http://blog.sina.com.cn/s/blog_6abcacf5010138q5.html private Hashtable NodesStatus = new Hashtabl ...