hdu 1072 The area(dfs)

很简单的一题,由于个人的优先队列的定义不正确导致错了!!!

其实这题不用自己定义的!!!


#include<stdio.h>

#include<string.h>
#include<queue>
using namespace std;


struct node
{
    int x,y;
    int time,step;//在这定义的孩子注意了!
};


int map[10][10],n,m;
int startx,starty,endx,endy;
int dir[4][2]={0,1,1,0,-1,0,0,-1};


int judge(int x,int y)
{
    if(x>=1&&x<=n&&y>=1&&y<=m)
    {
        if(map[x][y]!=0)
            return 1;
    }
    return 0;
}


void dfs(int startx,int starty)
{
    queue<node>q;
    node cur,next;
    int x,y,i;
    cur.x=startx;cur.y=starty;
    cur.time=6;cur.step=0;
    map[cur.x][cur.y]=0;
    q.push(cur);
    while(!q.empty())
    {
        next=q.front();
        q.pop();
        for(i=0;i<4;i++)
        {
            cur.x=x=next.x+dir[i][0];
            cur.y=y=next.y+dir[i][1];
            cur.time=next.time-1;
            cur.step=next.step+1;
            if(judge(x,y)&&map[x][y]!=0&&cur.time>0)
            {
                if(map[x][y]==3)
                {
                    printf("%d\n",cur.step);
                    return;
                }
                else if(map[x][y]==4)
                {
                    cur.time=6;
                    map[x][y]=0;
                }
                q.push(cur);
            }
        }
    }
    printf("-1\n");
}


int main()
{
    int T,i,j;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d%d",&n,&m);
        for(i=1;i<=n;i++)
            for(j=1;j<=m;j++)
                scanf("%d",&map[i][j]);
            for(i=1;i<=n;i++)
                for(j=1;j<=m;j++)
                {
                    if(map[i][j]==2)
                    {
                        startx=i;starty=j;
                    }
                }
                dfs(startx,starty);
                }
    return 0;

}

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1072

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值