1. 程式人生 > >hdu1010Tempter of the Bone(dfs+奇偶剪枝)

hdu1010Tempter of the Bone(dfs+奇偶剪枝)

clu cpp pid size str pac namespace 鏈接 題目

題目鏈接:

pid=1010">點擊打開鏈接

題目描寫敘述:給定一個迷宮,給一個起點和一個終點。問是否能恰好經過T步到達終點?每一個格子不能反復走

解題思路:dfs+剪枝

剪枝1:奇偶剪枝,推斷終點和起點的距離與T的奇偶性是否一致,假設不一致,直接剪掉

剪枝2:假設從當前到終點的至少須要的步數nt加上已經走過的步數ct大於T,即nt+ct>t剪掉

剪枝3:假設迷宮中能夠走的格子小於T直接剪掉

啟示:剪枝的重要性

代碼:

#include <cstdio>
#include <cstdlib>
#include <cstring>
using namespace std;
int n,m,t;
char g[10][10];
int sx,sy,dx,dy;
bool flag[10][10];
const int nx[]= {0,1,0,-1};
const int ny[]= {1,0,-1,0};
bool dfs(int x,int y,int ct)
{
    if(x==dx&&y==dy)
    {
        if(t==ct)
            return true;
        else
            return false;
    }
    if(abs(dx-x)+abs(dy-y)+ct<=t)
    {
        for(int i=0; i<4; ++i)
        {
            int ntx=x+nx[i];
            int nty=y+ny[i];
            if(ntx<=n&&ntx>=1&&nty<=m&&nty>=1&&g[ntx][nty]=='.'&&!flag[ntx][nty])
            {
                flag[ntx][nty]=true;
                if(dfs(ntx,nty,ct+1)) return true;
                flag[ntx][nty]=false;
            }
        }
    }
    return false;
}
int main()
{
    while(scanf("%d%d%d",&n,&m,&t)==3&&(n!=0||m!=0||t!=0))
    {
        int cut=0;
        for(int i=1; i<=n; ++i)
        {
            scanf("%s",&g[i][1]);
            for(int j=1; j<=m; ++j)
            {
                if(g[i][j]=='S') sx=i,sy=j;
                if(g[i][j]=='D') dx=i,dy=j;
                if(g[i][j]=='.') cut++;
            }
        }
        if(abs(dx-sx)+abs(dy-sy)>t||cut<t-1||(abs(dx-sx)+abs(dy-sy))%2!=t%2)
        {
            printf("NO\n");
            continue;
        }
        memset(flag,false,sizeof(flag));
        flag[sx][sy]=true;
        g[dx][dy]='.';
        if(dfs(sx,sy,0))
            printf("YES\n");
        else
            printf("NO\n");
    }
    return 0;
}


hdu1010Tempter of the Bone(dfs+奇偶剪枝)