博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 1010
阅读量:5319 次
发布时间:2019-06-14

本文共 2829 字,大约阅读时间需要 9 分钟。

 
奇偶剪枝:
是数据结构的搜索中,剪枝的一种特殊小技巧。
现假设起点为(sx,sy),终点为(ex,ey),给定t步恰好走到终点,
 
s        
|        
|        
|        
+ e
 
如图所示(“|”竖走,“—”横走,“+”转弯),易证abs(ex-sx)+abs(ey-sy)为此问题类中任意情况下,起点到终点的最短步数,记做step,此处step1=8;
  
s  
  +  
| +      
|        
+ e
 
如图,为一般情况下非最短路径的任意走法举例,step2=14;
step2-step1=6,偏移路径为6,偶数(易证);
故,若t-[abs(ex-sx)+abs(ey-sy)]结果为非偶数(奇数),则无法在t步恰好到达;
返回,false;
反之亦反。

Tempter of the Bone

时间限制: 1000ms
内存限制: 32768KB
HDU        ID:  
64位整型:       Java 类名:
 
     
 
类型:  
  没有 难度     lv.1      lv.2      lv.3     lv.4      lv.5     lv.6      lv.7     lv.8      lv.9     lv.10  搜索 数据结构  动态规划 STL练习  高精度计算 图论  几何 数学 矩阵计算  入门题目 字符串  博弈论                    添加

题目描述

The doggie found a bone in an ancient maze, which fascinated him a lot. However, when he picked it up, the maze began to shake, and the doggie could feel the ground sinking. He realized that the bone was a trap, and he tried desperately to get out of this maze.
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.

输入

The input consists of multiple test cases. The first line of each test case contains three integers N, M, and T (1 < N, M < 7; 0 < T < 50), which denote the sizes of the maze and the time at which the door will open, respectively. The next N lines give the maze layout, with each line containing M characters. A character is one of the following:
'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.

输出

For each test case, print in one line "YES" if the doggie can survive, or "NO" otherwise.

样例输入

4 4 5S.X...X...XD....3 4 5S.X...X....D0 0 0

样例输出

NOYES

#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;int n,m,t,flag,sx,sy,ex,ey;char map[8][8];int dir[4][2]= {0,1,1,0,0,-1,-1,0};void dfs(int x,int y,int time){ if(flag) return; if(x==ex&&y==ey&&time==0) flag=1; for(int k=0; k<=3; k++) { int st=x+dir[k][0]; int ed=y+dir[k][1]; if(st<0||st>=n||ed<0||ed>=m) continue; if(map[st][ed]!='X') { map[st][ed]='X'; dfs(st,ed,time-1); map[st][ed]='.'; } }}int main(){ while(~scanf("%d%d%d",&n,&m,&t)&&(n||m||t)) { int i,j; flag=0; memset(map,0,sizeof(0)); for(i=0; i



转载于:https://www.cnblogs.com/nyist-xsk/p/7264921.html

你可能感兴趣的文章
2.5 非透明PCI桥 分类: 浅谈PCI 2...
查看>>
POJ 2263 Heavy Cargo(Floyd + map)
查看>>
Macbook pro 下修改MySQL数据库密码
查看>>
使用postman做接口测试(一)
查看>>
Linux的locale、LC_ALL和LANG
查看>>
C# 动态调用DLL库
查看>>
Ubuntu使用问题解决办法
查看>>
android 开发 实现RecyclerView的列表单选功能
查看>>
从零教你如何获取hadoop2.4源码并使用eclipse关联hadoop2.4源码
查看>>
超详细单机版搭建hadoop环境图文解析
查看>>
P2P UPD打洞原理
查看>>
Unity3D使用小技巧
查看>>
播放器设置 Player Settings
查看>>
IntelliJ IDEA添加JUnit单元测试
查看>>
循环群
查看>>
python 函数的应用、闭包、迭代器
查看>>
mysql数据库学习记录1
查看>>
nodejs-mysql模块
查看>>
HDU--2546 饭卡
查看>>
2019杭电多校一 K. Function (数论)
查看>>