【HDU】1010Tempter of the Bone【dfs+剪枝】

该博客介绍了如何解决HDU 1010题目的方法,指出仅使用深度优先搜索(DFS)会导致超时,需要通过剪枝策略进行优化。博主提供了包含变态数据的示例,例如6x6的矩阵,以及最终得出'NO'的结果,强调了剪枝在算法效率提升中的关键作用。
摘要由CSDN通过智能技术生成

单纯用dfs会超时

要用剪枝优化

提供一组变态数据

6 6 37
S.....
......
......
......
......
D.....
NO

#include<bits/stdc++.h>
#include<cstring>
using namespace std;

struct node{
    int x,y;
};
int N,M,T;
char mp[8][8];
node Begin,End;
int dir[4][2]={ {1,0},{-1,0},{0,1},{0,-1} };
bool Tap=false;

bool OutBorder(int x,int y){
    if(x<0||x>=N||y<0||y>=M)
        return true;
    return false;
}

int OddOrEven(int x,int y){
    return abs(x-End.x)+abs(y-End.y);
}

void dfs(int x,int y,int t){
    if(Tap)
        return ;
    //printf("X: %d  Y:%d t: %d\n",x,y,t);
    int temp=OddOrEven(x,y);
    temp=T-t-temp;
    if( temp<0 ||temp&1 || t>T)
        return ;
    if(t==T&&x==End.x&&y==End.y){
        Tap=true;
        return ;
    }
    for(int i=0;i<4;i++){
        int cur_x=x+dir[i][0];
        int cur_y=y+dir[i][1];
        if(!OutBorder(cur_x,cur_y)&&(mp[cur_x][cur_y]!='X')){
            mp[cur_x][cur_y]='X';
            dfs(cur_x,cur_y,t+1);
            mp[cur_x][cur_y]='.';
            if(Tap)
                return ;
        }
    }
}
//6 6 37
//S.....
//......
//......
//......
//......
//D.....
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    while(cin>>N>>M>>T,N&&M&&T){
        Tap=false;
        int cnt=0;
        for(int i=0;i<N;i++){
            cin>>mp[i];
            for(int j=0;j<M;j++){
                if(mp[i][j]=='D')   End.x=i,End.y=j;
                else if(mp[i][j]=='S')   Begin.x=i,Begin.y=j;
                else if(mp[i][j]=='X')  cnt++;
            }
        }
        if(N*M-cnt<=T)
            Tap=false;
        else{
            mp[Begin.x][Begin.y]='X';
            dfs(Begin.x,Begin.y,0);
        }printf("%s\n",Tap==true?"YES":"NO");
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值