zoukankan      html  css  js  c++  java
  • 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 类名:
    类型:   

    题目描述

    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
    ");
            else
            {
                map[sx][sy]='X';
                dfs(sx,sy,t);
                if(flag) printf("YES
    ");
                else printf("NO
    ");
            }
        }
        return 0;
    }
    










    
  • 相关阅读:
    2、细节&Class对象
    1、概述&应用场景
    Magento请求分发与控制器
    Magento强大的配置系统
    ecshop在PHP 5.4以上版本各种错误问题处理
    Thinkphp单字母函数使用指南
    五种常见的 PHP 设计模式
    MyISAM和InnoDB的区别
    linux下如何删除文件夹
    Linux软件安装与卸载
  • 原文地址:https://www.cnblogs.com/nyist-xsk/p/7264921.html
Copyright © 2011-2022 走看看