hdu 1010 Tempter of the Bone

简介:

hdu 1010 的传送门

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.

Input
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.

Output
For each test case, print in one line “YES” if the doggie can survive, or “NO” otherwise.
题目大意:就是求从S点开始到达D点需要的时间跟给出的时间相比是不是相等,(不要走带有”X”的地方)如果相等输出YES,不相等输出NO。。
解题思路:剪枝 + 深搜,,注意这里是奇偶剪枝,奇偶剪枝:
是数据结构的搜索中,剪枝的一种特殊小技巧。
现假设起点为(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;
反之亦反。
上代码:

#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
using namespace std;
char map[15][15];
bool vis[15][15];
int m,n,k,ans;
int ax,ay,bx,by;
int flag,step;
int dir[4][2]={{0,1},{1,0},{0,-1},{-1,0}};
void dfs(int x, int y, int cnt)
{
    int mx,my;
    if(x == bx && y == by)
    {
        if(k == cnt)
           flag=1;
        return ;
    }
    if(cnt>=k)
       return ;
    if(map[x][y]!='X')
    {
        for(int i=0; i<4; i++)
        {
            mx=x+dir[i][0];
            my=y+dir[i][1];
            if(mx>=1&&mx<=m && my>=1&&my<=n && !vis[mx][my] && map[mx][my]!='X')
            {
                vis[mx][my]=1;
                dfs(mx,my,cnt+1);
                vis[mx][my]=0;
                if(flag)
                  return;

            }
        }
    }
}

int main()
{
    while(~scanf("%d%d%d",&m, &n, &k),m,n,k)
    {
        int cnt;
        for(int i=1; i<=m; i++)
        {
            for(int j=1; j<=n; j++)
            {
                cin>>map[i][j];
                if(map[i][j] == 'S')
                {
                    ax=i;
                    ay=j;
                }
                if(map[i][j] == 'D')
                {
                    bx=i;
                    by=j;
                }
            }
        }
        memset(vis, 0, sizeof(vis));
        if(abs(ax-bx)+abs(ay-by)>k || (ax+bx+ay+by+k)%2==1)//奇偶剪枝
        {
            puts("NO");
            continue;
        }
        vis[ax][ay]=1;
        flag=0;
        cnt=0;
        dfs(ax, ay, cnt);
        if(flag)
           puts("YES");
        else
           puts("NO");

    }
    return 0;
}
目录
相关文章
|
搜索推荐 云计算
在线教育平台
在线教育平台
1259 3
|
机器学习/深度学习 自然语言处理 运维
探索深度学习在图像识别中的最新进展
探索深度学习在图像识别中的最新进展
|
存储 消息中间件 NoSQL
聊一聊数据库的行存与列存
好多人最开始学习数据库的时候,是关系数据库,数据以表格形式存储,一行表示一条记录。其实这种就是典型的行存储(Row-based store),将表按行存储到磁盘分区上。 而一些数据库还支持列存储(Column-based store),它将表按列存储到磁盘分区上。
聊一聊数据库的行存与列存
|
网络协议 Linux Shell
Linux下常用的端口转发工具
【7月更文挑战第27天】Linux下常用的端口转发工具
989 14
|
JSON 数据挖掘 API
电商信息指南:API接口淘宝关键词、店铺所有商品获取
要获取淘宝关键词商品数据和店铺所有商品的API接口,需先注册淘宝开放平台账号并创建应用,获取API密钥。接着,使用密钥获取访问令牌,详细阅读API文档,构造并发送API请求,解析响应数据。特别地,使用`item_search_shop`接口可获取店铺内所有商品信息。
|
Java
Mac 设置 JAVA_HOME
Mac 设置 JAVA_HOME
629 0
|
机器学习/深度学习 人工智能 自然语言处理
大模型应用实践:AIGC探索之旅(下)
大模型应用实践:AIGC探索之旅(下)
3551 1
|
架构师 Java 程序员
3分钟通晓,互联网架构20年以来的演进
作为一个Java程序员,你可能也思考过,为什么我还是普通开发,为什么我还是高级开发,普通开发和高级开发有什么区别?你是不是也想过要成为架构师?想要成为合格的架构师,就必须要了解架构的演进,今天,我们就来聊一聊,Java架构的演变历史。
384 0
|
存储 Java API
【java规则引擎】drools6.5.0中kie的概论
什么是KIE? KIE是jBoss里面一些相关项目的统称,下图就是KIE代表的一些项目,其中我们比较熟悉的就有jBPM和Drools。 这些项目都有一定的关联关系,并且存在一些通用的API,比如说涉及到构建(building)、部署(deploying)和加载 (loading)等方面的,这些API就都会以KIE作为前缀来表示这些是通用的API。
2641 0
|
存储 供应链 Python
用Python代码打造超市收银系统
用Python代码打造超市收银系统
978 1