hdu 1010:Tempter of the Bone(DFS + 奇偶剪枝)
Tempter of the Bone
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 58766 Accepted Submission(s): 15983
Problem Description
The maze was a rectangle with sizes N by M. There was a door in the maze. At the beginning, the door was closed and it would open at the T-th second for a short period of time (less than 1 second). Therefore the doggie had to arrive at the door on exactly the T-th second. In every second, he could move one block to one of the upper, lower, left and right neighboring blocks. Once he entered a block, the ground of this block would start to sink and disappear in the next second. He could not stay at one block for more than one second, nor could he move into a visited block. Can the poor doggie survive? Please help him.
Input
'X': a block of wall, which the doggie cannot enter;
'S': the start point of the doggie;
'D': the Door; or
'.': an empty block.
The input is terminated with three 0's. This test case is not to be processed.
Output
Sample Input
Sample Output
Author
Source
Recommend
#include <iostream>
#include <cstring>
using namespace std;
char maze[][];
int isw[][];
int dx[]={,,,-};
int dy[]={,,-,};
int N,M,T;
int curx,cury,endx,endy;
int abs(int n)
{
return n>=?n:-n;
}
int dfs(int curx,int cury,int curt) //判断从当前位置(curx,cury)能否用刚好curt时间到达结束点
{
if(curt==){ //当时间耗尽的时候,判断是否到达了结束点
if(curx==endx && cury==endy)
return ;
else
return ;
}
//剪枝 1 :奇偶剪枝
int m = abs(curx-endx) + abs(cury-endy); //理想情况下,开始点到终点的最小步数
int t = curt; //要求走t步正好走到终点
//当 t<m 时,一定不能到达
//当 t>=m 时,要用t步从开始点正好走到终点,分两部分。
// 一部分为最小步数 m ,另一部分是为了凑够t步而余外多走的几步,设为 a。
// 而走出去就一定要走回来,所以走出去的步数和回来的步数一定是相等的,为b步。
// a=2b,所以多走的a步一定是偶数。
// 这里的奇偶剪枝就是判断 a 是否为偶数。如果不是偶数,一定不能到达。
if( t<m || (t-m)& )
return ;
for(int i=;i<;i++){ //剪枝 2
if( <=curx+dx[i] && curx+dx[i]<=N && <=cury+dy[i] && cury+dy[i]<=M //如果没有越界
&& !isw[curx+dx[i]][cury+dy[i]] //如果下一步没有走过
&& maze[curx+dx[i]][cury+dy[i]]!='X' ){ //如果下一步不是墙
isw[curx+dx[i]][cury+dy[i]]=true;
if(dfs(curx+dx[i],cury+dy[i],curt-)) //如果下一步这样走可以生存,则返回1
return ;
isw[curx+dx[i]][cury+dy[i]]=false;
}
}
return ;
} int main()
{
while(cin>>N>>M>>T){
if(N== && M== && T==) break;
memset(isw,,sizeof(isw)); //将isw[][]数组初始化为false,表示还没有走过。
for(int i=;i<=N;i++)
for(int j=;j<=M;j++){
cin>>maze[i][j];
if(maze[i][j]=='S'){ //记录开始点的位置
curx=i;
cury=j;
}
else if(maze[i][j]=='D'){ //记录终点的位置
endx=i;
endy=j;
}
}
isw[curx][cury]=true; //开始位置赋true
if(dfs(curx,cury,T)) //如果能够生存,输出YES,否则输出NO
cout<<"YES"<<endl;
else
cout<<"NO"<<endl;
}
return ;
}
Freecode : www.cnblogs.com/yym2013
hdu 1010:Tempter of the Bone(DFS + 奇偶剪枝)的更多相关文章
- HDU 1010 Tempter of the Bone(DFS+奇偶剪枝)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1010 题目大意: 输入 n m t,生成 n*m 矩阵,矩阵元素由 ‘.’ 'S' 'D' 'X' 四 ...
- hdu.1010.Tempter of the Bone(dfs+奇偶剪枝)
Tempter of the Bone Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Othe ...
- hdu - 1010 Tempter of the Bone (dfs+奇偶性剪枝) && hdu-1015 Safecracker(简单搜索)
http://acm.hdu.edu.cn/showproblem.php?pid=1010 这题就是问能不能在t时刻走到门口,不能用bfs的原因大概是可能不一定是最短路路径吧. 但是这题要过除了细心 ...
- HDU 1010 Tempter of the Bone --- DFS
HDU 1010 题目大意:给定你起点S,和终点D,X为墙不可走,问你是否能在 T 时刻恰好到达终点D. 参考: 奇偶剪枝 奇偶剪枝简单解释: 在一个只能往X.Y方向走的方格上,从起点到终点的最短步数 ...
- HDU 1010 Tempter of the Bone (DFS+可行性奇偶剪枝)
<题目链接> 题目大意:一个迷宫,给定一个起点和终点,以及一些障碍物,所有的点走过一次后就不能再走(该点会下陷).现在问你,是否能从起点在时间恰好为t的时候走到终点. 解题分析:本题恰好要 ...
- hdu 1010 Tempter of the Bone 深搜+剪枝
Tempter of the Bone Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Othe ...
- Tempter of the Bone(dfs奇偶剪枝)
Tempter of the Bone Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Othe ...
- M - Tempter of the Bone(DFS,奇偶剪枝)
M - Tempter of the Bone Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & % ...
- HDU 1010 Tempter of the Bone DFS(奇偶剪枝优化)
需要剪枝否则会超时,然后就是基本的深搜了 #include<cstdio> #include<stdio.h> #include<cstdlib> #include ...
- (step4.3.1) hdu 1010(Tempter of the Bone——DFS)
题目大意:输入三个整数N,M,T.在接下来的N行.M列会有一系列的字符.其中S表示起点,D表示终点. .表示路 . X表示墙...问狗能有在T秒时到达D.如果能输出YES, 否则输出NO 解题思路:D ...
随机推荐
- 初学structs2,表单验证简单补充
一.使用注解方式,跳过验证某个方法 由于在开发中,我们不需在请求每一个action类中的方法时都要走validate方法,那么我们可以在这些不需要验证的方法上加上@SkipValidation注解即可 ...
- Get与Post比较
- vim tab 和4个空格
在.vimrc中添加以下代码后,重启vim即可实现按TAB产生4个空格:set ts=4 (注:ts是tabstop的缩写,设TAB宽4个空格)set expandtab 对于已保存的文件,可以使用 ...
- Redis 数据库
Redis 服务器 Remote Dictionay Server Redis是一个key-value持久化产品,通常被称为数据结构服务器. Redis的key是string类型: ...
- Android-调用优酷SDK上传视频
最近在研究用优酷的SDK来进行视频上传的功能,由于优酷的SDK只是提供了一个上传的sample code,没有涉及到授权的过程,对于新手来说,可能非常棘手,现在分享一下我的思路: 程序实现前我们先 ...
- 如何在word里面插入目录
点击“引用”->插入目录
- js实现剪切、复制、粘贴——clipBoard.js
摘要: 最近项目上要实现一个点击按钮复制链接的功能,刚开始查找了一些资料,找了几款插件,ZeroClipboard是通过flash实现的复制功能,随着越来越多的提议废除flash,于是就想能不能通过j ...
- 修改Flume-NG的hdfs sink解析时间戳源码大幅提高写入性能
Flume-NG中的hdfs sink的路径名(对应参数"hdfs.path",不允许为空)以及文件前缀(对应参数"hdfs.filePrefix")支持正则解 ...
- Highways(prim & MST)
Highways Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 23421 Accepted: 10826 Descri ...
- MYSQL注入天书之HTTP头部介绍
Background-5 HTTP头部介绍 在利用抓包工具进行抓包的时候,我们能看到很多的项,下面详细讲解每一项. HTTP头部详解 1. Accept:告诉WEB服务器自己接受什么介质类型,*/* ...