HDU_1010_Tempter of the Bone

HDU 1010

题意:给定T秒,问是否能在T秒内逃出迷宫,每移动一步就花费一秒钟,已经走过的格子不能再走。
思路:用dfs遍历确定能否找到符合条件的路,这里要用到剪枝去优化。


#include <iostream>
#include <iomanip>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <set>
#include <map>
#include <list>
#include <stack>
#include <deque>
#include <queue>
#include <vector>
#include <algorithm>
#include <functional>

#define PI acos(-1.0)
#define eps 1e-10
#define INF 0x7fffffff
#define debug(x) cout << "--------------> " << x << endl

typedef long long LL;
typedef unsigned long long ULL;

using namespace std;
int n, m, t, di, dj 
//row, column, time, row of destination, column of destination
int vis[10][10], flag, ans, wall;
int dx[] = {1, 0, -1, 0}, dy[] = {0, 1, 0, -1};
char graph[10][10];

void dfs(int x, int y,int cnt)
{
     if(flag || cnt > t) return ;
     if(x >= n || y >= m || x < 0 || y < 0)
        return ;
     if(graph[x][y] == 'D' && cnt == t)
     {
             flag = 1;
             ans = 1;
             return ;
     }
     int tmp = t - cnt - abs(x - di) - abs(y - dj);
     if(tmp & 1) return ;      //奇偶剪枝,只有当tmp为偶数才有可能到达
     for(int i = 0; i < 4; ++i)
     {
             int xx = x + dx[i], yy = y + dy[i];
             if(!vis[xx][yy] && graph[xx][yy] != 'X')
             {
                     vis[xx][yy] = 1;
                     dfs(xx, yy, cnt+1);
                     vis[xx][yy] = 0;
             }
     }
}
int main()
{
        int x,y;
        while (scanf("%d%d%d", &n, &m, &t) && n+m+t)
        {
               memset(vis,0,sizeof(vis));
               wall = 0;
               for(int i = 0; i < n; ++i)
               {
                       for(int j = 0; j < m; ++j)
                       {
                               scanf(" %c",&graph[i][j]);
                               if(graph[i][j] == 'S')
                               {
                                x = i;
                                y = j;
                                vis[i][j] = 1;
                               }
                                else if(graph[i][j] == 'D')
                                {
                                di = i;
                                dj = j;
                                }
                                else if(graph[i][j] == 'X')
                                        wall++;
                       }
               }
               ans = 0; flag = 0;
               if(n*m-wall-1 >= t)        //优化,可走的步数大于等于t才dfs
               dfs(x, y, 0);
               ans ? puts("YES") : puts("NO");

        }

        return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值