HDU4528+BFS
/*
bfs+标记状态
如何记录状态是关键!!
*/
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<algorithm>
#include<iostream>
#include<queue>
#include<stack>
#include<math.h>
#include<map>
using namespace std;
const int maxn = ;
const int inf = ;
char mat[ maxn ][ maxn ];
int vis[ maxn ][ maxn ][ ][ ];
const int dx[]={,-,,};
const int dy[]={,,,-};
struct Pos{
int x,y;
};
struct Node{
int x,y,ti;
int D,E;//flag
};
Pos D,S,E;
void init(){
for( int i=;i<maxn;i++ )
for( int j=;j<maxn;j++ )
mat[i][j] = 'X';
} bool in( Node p,int n,int m ){
if( p.x>=&&p.x<n&&p.y>=&&p.y<m )
return true;
else
return false;
}
bool Judge1( Node tmp ){
int x = tmp.x;
int y1 = min( tmp.y,D.y );
int y2 = max( tmp.y,D.y );
for( int i=y1+;i<y2;i++ ){
if( mat[x][i]=='X' ) return false;
else if( mat[x][i]=='.' ){
if( x==D.x&&i==D.y ) return false;
else if( x==E.x&&i==E.y ) return false;
}
}
return true;
}
bool Judge2( Node tmp ){
int x = tmp.x;
int y1 = min( tmp.y,E.y );
int y2 = max( tmp.y,E.y );
for( int i=y1+;i<y2;i++ ){
if( mat[x][i]=='X' ) return false;
else if( mat[x][i]=='.' ){
if( x==D.x&&i==D.y ) return false;
else if( x==E.x&&i==E.y ) return false;
}
}
return true;
}
bool Judge3( Node tmp ){
int y = tmp.y;
int x1 = min( tmp.x,D.x );
int x2 = max( tmp.x,D.x );
for( int i=x1+;i<x2;i++ ){
if( mat[i][y]=='X' ) return false;
else if( mat[i][y]=='.' ){
if( i==D.x&&y==D.y ) return false;
else if( i==E.x&&y==E.y ) return false;
}
}
return true;
}
bool Judge4( Node tmp ){
int y = tmp.y;
int x1 = min( tmp.x,E.x );
int x2 = max( tmp.x,E.x );
for( int i=x1+;i<x2;i++ ){
if( mat[i][y]=='X' ) return false;
else if( mat[i][y]=='.' ){
if( i==D.x&&y==D.y ) return false;
else if( i==E.x&&y==E.y ) return false;
}
}
return true;
} int bfs( int n,int m,int aim_ti ){
Node cur,nxt;
cur.x = S.x;
cur.y = S.y;
cur.ti = ;
cur.D = cur.E = ;
queue<Node>q;
while( !q.empty() )
q.pop();
q.push( cur );
int ans = inf;
vis[ cur.x ][ cur.y ][ cur.D ][ cur.E ] = ;
while( !q.empty() ){
cur = q.front();
q.pop();
if( cur.ti>aim_ti ) continue;
//printf("cur:x=%d,y=%d,ti=%d\n",cur.x,cur.y,cur.ti);
if( cur.x==D.x&&Judge1( cur )==true ) cur.D = ;
if( cur.x==E.x&&Judge2( cur )==true ) cur.E = ;
if( cur.y==D.y&&Judge3( cur )==true ) cur.D = ;
if( cur.y==E.y&&Judge4( cur )==true ) cur.E = ;
if( cur.D== ) {
if( cur.E== ){
if( ans>cur.ti ){
ans = cur.ti;
}
}
}
//printf("ans:%d\n",ans);
for( int i=;i<;i++ ){
nxt = cur;
nxt.x+=dx[i];
nxt.y+=dy[i];
nxt.ti++;
if( in( nxt,n,m )==true&&mat[nxt.x][nxt.y]!='X'&&vis[nxt.x][nxt.y][nxt.D][nxt.E]== ){
vis[nxt.x][nxt.y][nxt.D][nxt.E] = ;
q.push(nxt);
}
}
}
if( ans>aim_ti ) return -;
else return ans;
} int main(){
int ca,T;
scanf("%d",&ca);
T = ;
while( ca-- ){
int n,m,aim_ti;
printf("Case %d:\n",T++);
init();
scanf("%d%d%d",&n,&m,&aim_ti);
for( int i=;i<n;i++ ){
scanf("%s",mat[i]);
for( int j=;j<m;j++ ){
if( mat[i][j]=='D' ){
D.x = i;
D.y = j;
mat[i][j]='X';
}
else if( mat[i][j]=='S' ){
S.x = i;
S.y = j;
mat[i][j]='.';
}
else if( mat[i][j]=='E' ){
E.x = i;
E.y = j;
mat[i][j]='X';
}
}
}
memset( vis,,sizeof( vis ) );
int ans = bfs( n,m,aim_ti );
printf("%d\n",ans);
}
return ;
}
HDU4528+BFS的更多相关文章
- HDU-4528 小明系列故事——捉迷藏 BFS模拟
题意:链接 分析:每一个D或者是E点往四面延伸,并且赋一个特殊的值,能看到D点的点赋值为1,能看到E点的点赋值为1000,这是因为最多100步,因此最后可以根据除以1000和对1000取模来得出某个状 ...
- hdu4528 小明系列故事——捉迷藏(记录状态的BFS)题解
思路: 一道BFS题,和以前的BFS有点不同,这里的vis数组需要记录每次走时的状态,所以开了3维,只对该状态下的vis修改. 注意坑点:S的位置是可以走的 代码: #include<queue ...
- HDU4528 小明捉迷藏 [搜索-BFS]
一.题意 小明S在迷宫n*m中找大明D和二明E,障碍物X不能走,问你计算是否能在时间t内找到大明和二明 二.分析 2.1与普通的BFS不同,这里可以走回头路,这里应该建立四维的标记数组标记数组,例如v ...
- 图的遍历(搜索)算法(深度优先算法DFS和广度优先算法BFS)
图的遍历的定义: 从图的某个顶点出发访问遍图中所有顶点,且每个顶点仅被访问一次.(连通图与非连通图) 深度优先遍历(DFS): 1.访问指定的起始顶点: 2.若当前访问的顶点的邻接顶点有未被访问的,则 ...
- 【BZOJ-1656】The Grove 树木 BFS + 射线法
1656: [Usaco2006 Jan] The Grove 树木 Time Limit: 5 Sec Memory Limit: 64 MBSubmit: 186 Solved: 118[Su ...
- POJ 3278 Catch That Cow(bfs)
传送门 Catch That Cow Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 80273 Accepted: 25 ...
- POJ 2251 Dungeon Master(3D迷宫 bfs)
传送门 Dungeon Master Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 28416 Accepted: 11 ...
- Sicily 1215: 脱离地牢(BFS)
这道题按照题意直接BFS即可,主要要注意题意中的相遇是指两种情况:一种是同时到达同一格子,另一种是在移动时相遇,如Paris在(1,2),而Helen在(1,2),若下一步Paris到达(1,1),而 ...
- Sicily 1048: Inverso(BFS)
题意是给出一个3*3的黑白网格,每点击其中一格就会使某些格子的颜色发生转变,求达到目标状态网格的操作.可用BFS搜索解答,用vector储存每次的操作 #include<bits/stdc++. ...
随机推荐
- PHP之文件目录基础操作
我们知道,临时声明的变量是保存在内存中的,即便是静态变量,在脚本运行完毕后也会被释放掉,so,想长久保存一个变量的内容,方法之一就是写到文件中,放到硬盘或服务器上,为此文件操作就必须很熟悉. 1.文件 ...
- 分析Redis架构设计
http://blog.csdn.net/a600423444/article/details/8944601 一.前言 因为近期项目中开始使用Redis,为了更好的理解Redis并应用在适合的业务场 ...
- spring3.2.0与mybatis3.2.7整合出错--Failed to read candidate component class--nested exception is java.lang.IllegalArgumentException
错误信息如下: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to read candidate com ...
- tlb,tlh,tli文件的关系
tlb文件:com类型库文件.在需要使用对应com类的模块里,“#import ...*.tlb”使用之. tlh.tli文件:他们是vc++编译器解析tlb文件生成的标准c++文件.因为odl和tl ...
- Android——列表视图(ListView)
列表视图是android中最常用的一种视图组件,它以垂直列表的形式列出需要显示的列表项.在android中有两种方法向屏幕中添加列表视图:一种是直接使用ListView组件创建:另外一种是让Activ ...
- C# IO操作(二)File类和Directory类的常用方法
本篇主要介绍一些常用的IO操作,对文件和目录的操作:留给自己复习之用. 1.创建文件 string sPath1=Path.GetDirectoryName(Assembly.GetExecuting ...
- ### MATLAB - CUDA
MATLAB下使用CUDA. #@author: gr #@date: 2014-04-08 #@email: forgerui@gmail.com 一. Matlab & C 1. 概念 M ...
- selenium文件上传的实现
一.对于上传文件, 从手动操作我们可以看出, 需要对window 窗体进行操作, 而对于selenium webdriver 在这方面应用就受到了限制. 但是, 庆幸的是, 对于含有input ele ...
- cocos2d-x实战 C++卷 学习笔记--第4章 使用菜单
前言: 菜单中包含菜单项,菜单项类是 MenuItem ,每个菜单项都有三个基本状态:正常.选中和禁止. (MenuItem)菜单分类: (文本菜单)MenuItemLabel : MenuItemA ...
- Css颜色定义的方法汇总color属性设置方式
颜色的定义方式用rgb()里面带上十进制的数字来定义. color:rgb(211,123,135); 用预定义的颜色名称. color:red; rgba()最后一个参数是不透明度. color:r ...