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
奇偶剪枝:
temp=t-abs(x-a)-abs(y-b)-step;
if(temp<0||temp&1)
return ;
题意描述:s能否在t秒的时候恰好到达d如果能输出yes否则输出no。
这个是AC的代码
#include<stdio.h>
#include<string.h>
#include<math.h>
int book[10][10];
char e[10][10];
int a,b,n,m,t,flag;
int next[4][2]={1,0, -1,0, 0,1, 0,-1};
void dfs(int x,int y,int step)
{
int tx,ty,k,temp;
if(x==a&&y==b&&step==t)
{
flag=1;
return ;
}
temp=t-abs(x-a)-abs(y-b)-step;
if(temp<0||temp&1)
return ;
for(k=0;k<4;k++)
{
tx=next[k][0]+x;
ty=next[k][1]+y;
if(tx<1||ty<1||tx>n||ty>m)
continue;
if(book[tx][ty]==0&&e[tx][ty]!='X')
{
book[tx][ty]=1;
dfs(tx,ty,step+1);
if(flag==1)
return ;
book[tx][ty]=0;
}
}
}
int main(void)
{
int i,j,x,y,count;
while(scanf("%d%d%d",&n,&m,&t)!=EOF)
{
count=0;flag=0;
if(m==0&&n==0&&t==0)
break;
for(i=1;i<=n;i++)
{
for(j=1;j<=m;j++)
{
scanf(" %c",&e[i][j]);
if(e[i][j]=='S')
{
x=i;
y=j;
}
if(e[i][j]=='D')
{
a=i;b=j;
}
if(e[i][j]=='X')
count++;
book[i][j]=0;
}
}
if(m*n-count<=t)//这一步操作贼有用。
{
printf("NO\n");
continue;
}
book[x][y]=1;
dfs(x,y,0);
if(flag==1)
printf("YES\n");
else
printf("NO\n");
}
return 0;
}
这个代码只有交G++才能AC,交C和C++都是TLE,有哪位大佬能指点一下这是为啥吗?
#include<stdio.h>
#include<string.h>
#include<math.h>
char e[10][10];
int book[10][10],n,m,t,flag=0;
int a,b;
void dfs(int x,int y,int step)
{
int k;
int next[4][2]={1,0, -1,0, 0,1, 0,-1};
if(step>t-abs(a-x)-abs(b-y))
return ;
if(x==a&&y==b)
{
if(step==t)
flag=1;
return ;
}
if(t==step&&(x!=a||y!=b))
return ;
int tx,ty;
for(k=0;k<4;k++)
{
tx=x+next[k][0];
ty=y+next[k][1];
if(tx<1||ty<1||tx>n||ty>m)
continue;
if(book[tx][ty]==0&&e[tx][ty]!='X')
{
book[tx][ty]=1;
dfs(tx,ty,step+1);
if(flag==1)
return ;
book[tx][ty]=0;
}
}
}
int main(void)
{
int x,y;
while(~scanf("%d%d%d",&n,&m,&t))
{
if(m==0&&n==0&&t==0)
break;
flag=0;
memset(book,0,sizeof(book));
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
{
scanf(" %c",&e[i][j]);
if(e[i][j]=='S')
{
x=i;
y=j;
}
if(e[i][j]=='D')
{
a=i;b=j;
}
}
book[x][y]=1;
dfs(x,y,0);
if(flag==0)
printf("NO\n");
else
printf("YES\n");
}
return 0;
}

探讨了在特定时间内从迷宫中逃脱的算法问题,利用深度优先搜索(DFS)结合奇偶剪枝技巧,确保角色能在门开启瞬间抵达出口,避免地面消失的陷阱。
460

被折叠的 条评论
为什么被折叠?



