hdu 1010

 
奇偶剪枝:
是数据结构的搜索中,剪枝的一种特殊小技巧。
现假设起点为(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:   1010
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 5
S.X.
..X.
..XD
....
3 4 5
S.X.
..X.
...D
0 0 0

样例输出

NO
YES

#include<stdio.h>
#include<string.h>
#include<queue>
#include<math.h>
#include<stack>
#include<stdlib.h>
#include<algorithm>
#include<iostream>
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<n; i++)
            scanf("%s",map[i]);
        for(i=0; i<n; i++)
            for(j=0; j<m; j++)
            {
                if(map[i][j]=='S') sx=i,sy=j;
                if(map[i][j]=='D') ex=i,ey=j;
            }

        if(t<abs(sx-ex)+abs(sy-ey)||((t-(abs(sx-ex)+abs(sy-ey)))%2==1))
            printf("NO\n");
        else
        {
            map[sx][sy]='X';
            dfs(sx,sy,t);
            if(flag) printf("YES\n");
            else printf("NO\n");
        }
    }
    return 0;
}












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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值