zoukankan      html  css  js  c++  java
  • HDOJ1010 Tempter of the Bone

    Tempter of the Bone

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 35460    Accepted Submission(s): 9511


    Problem Description
    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.
     
    Sample Input
    4 4 5 S.X. ..X. ..XD .... 3 4 5 S.X. ..X. ...D 0 0 0
     
    Sample Output
    NO YES
     
      1 //回溯算法
      2 /*
      3 //代码一:输出结果错误,我对比了好几天,就是找不住原因,先放放吧!路过的求指点。。。。
      4 #include<stdio.h>
      5 int m,n,endi,endj,time,escape;
      6 int dir[4][2]={{-1,0},{0,1},{1,0},{0,-1}};
      7 char maze[9][9];
      8 
      9 void DFS(int i,int j,int t)
     10 {
     11     int k,temp;
     12     if(i<0||i>=n||j<0||j>=m)
     13         return;
     14     if(i==endi&&j==endj&&time==t)
     15     {
     16         escape=1;
     17         return;
     18     }
     19     if(escape)
     20         return;
     21     temp=time-t-abs(i-endi)-abs(j-endj);//剪枝
     22     if(temp<0||temp&1)//剪枝,如果是奇数也不行,假设当time-temp时候正好到达终点,
     23         return;            //让再走temp时间再回到终点,只有temp为偶数时候才满足题意
     24     for(k=0;k<4;++k)
     25     {
     26     //    if(i+dir[k][0]<0||i+dir[k][0]>=n||j+dir[k][1]<0||j+dir[k][1]>=m)
     27     //        return;
     28         if(maze[i+dir[k][0]][j+dir[k][1]]!='X')
     29         {
     30             maze[i+dir[k][0]][j+dir[k][1]]='X';
     31             DFS(i+dir[k][0],j+dir[k][1],t+1);
     32             maze[i+dir[k][0]][j+dir[k][1]]='.';//回溯---退回时恢复现场
     33         }
     34     }
     35     return;
     36 }
     37 
     38 int main()
     39 {
     40     int i,j,sti,stj,wall;
     41     while(scanf("%d%d%d",&n,&m,&time)&&n||m||time)
     42     {
     43         getchar();//吸收换行符
     44         wall=escape=0;
     45         for(i=0;i<n;++i)
     46         {
     47             for(j=0;j<m;++j)
     48             {
     49                 scanf("%c",&maze[i][j]);
     50                 if(maze[i][j]=='S')//标记起点
     51                 {
     52                     sti=i;
     53                     stj=j;
     54                 }
     55                 else if(maze[i][j]=='D')//标记终点
     56                 {
     57                     endi=i;
     58                     endj=j;
     59                 }
     60                 else if(maze[i][j]=='X')
     61                     ++wall;//方便以后剪枝
     62             }    
     63             getchar();
     64         }
     65         if(m*n-wall<=time)//剪枝
     66         {
     67             printf("NO\n");
     68             continue;
     69         }
     70         maze[sti][stj]='X';
     71         DFS(sti,stj,0);
     72         printf(escape?"YES\n":"NO\n");
     73     }
     74     return 0;
     75 }
     76 */
     77 
     78 
     79 //代码二:AC代码
     80 #include<iostream>
     81 using namespace std;
     82 char maze[9][9];
     83 int x,y,n,desx,desy,temp; // x is row y is cow n is steps
     84 bool escape; //run or not
     85 int d[4][2] = {{0,1},{0,-1},{1,0},{-1,0}}; // stand for four directions
     86 
     87 void DFS(int stax,int stay,int step) 
     88 {
     89     if(stax>x||stay>y||stay<=0||stax<=0)
     90         return;
     91     if(stax==desx&&stay==desy&&step==n)
     92     {
     93         escape=true;
     94         return;
     95     }
     96     if(escape) return;// cut tree
     97     temp=n-step-abs(stax-desx)-abs(stay-desy);
     98     if(temp<0||temp&1) return;
     99     for(int i=0;i<4;i++)
    100     {
    101        if(maze[stax+d[i][0]][stay+d[i][1]]!='X')
    102        {
    103             maze[stax+d[i][0]][stay+d[i][1]]='X';
    104             DFS(stax+d[i][0],stay+d[i][1],step+1);
    105             maze[stax+d[i][0]][stay+d[i][1]]='.';  // back
    106        }
    107     }
    108     return;
    109 }
    110 
    111 int main()
    112 {
    113     int stax,stay;
    114     while(cin>>x>>y>>n&&x+y+n)
    115     {
    116         escape=false;
    117         int wall=0;
    118         for(int i=1;i<=x;i++) 
    119         {
    120            for(int j=1;j<=y;j++)
    121            {
    122                cin>>maze[i][j];
    123                if(maze[i][j] =='S') 
    124                {
    125                    stax=i;
    126                    stay=j;
    127                }
    128                if(maze[i][j]=='D')
    129                {
    130                    desx=i;
    131                    desy=j;
    132                }
    133                if(maze[i][j]=='X')
    134                     wall++;
    135            }
    136        }
    137        if(x*y-wall<=n) 
    138        {
    139             cout<<"NO\n";
    140             continue;
    141        }
    142        maze[stax][stay]='X';
    143        DFS(stax,stay,0);
    144        cout<<(escape?"YES":"NO")<<endl;
    145     }
    146    return 0;
    147 }
    功不成,身已退
  • 相关阅读:
    2012工作计划!
    造船篇系统实施(新老衔接工作)
    Android学习摘要一之Android历史
    DEVReport控件使用方法
    造船篇 前传
    软件实施(1)
    茫然疑问未来
    造船篇钢材管理
    wcf身份验证问题
    IDL中关于波段计算的问题
  • 原文地址:https://www.cnblogs.com/dongsheng/p/2558788.html
Copyright © 2011-2022 走看看