HDU2612,简单广搜题

这道题目真心蛋疼= =,看完题目,立马用双向广搜写了一发,交上去之后超时= =;后来想想,换个角度,枚举每个@,然后取最小总时间,尼玛还超时,代码实在改不动了,就去看了题解。

呵呵吧,贴上题解

#include<cstdio>
#include<iostream>
#include<cstdlib>
#include<cstring>
#include<queue>
using namespace std;
struct node
{
    int x,y,step;
};//记录点的坐标以及到该点的时间
int n,m;
char ch[209][209];
int dir[4][2] = {0,-1,-1,0,0,1,1,0};
int vis[209][209],num[209][209];//vis标记数组,num记录到@的总时间
bool is_ok(node a)//判断是否越界
{
    return a.x >= 0 && a.x < n && a.y >= 0 && a.y < m;
}
void bfs(int x,int y)
{
    node s,t,ne;
    int i;
    s.x = x;
    s.y = y;
    s.step = 0;
    queue<node>q;
    while (!q.empty())
        q.pop();
    vis[x][y] = 1;
    q.push(s);
    while (!q.empty())
    {
        t = q.front();
        q.pop();
        for (i = 0; i < 4; ++i)
        {
            ne.x = t.x + dir[i][0];
            ne.y = t.y + dir[i][1];
            ne.step = t.step + 1;
            if (is_ok(ne) && ch[ne.x][ne.y] != '#' && !vis[ne.x][ne.y])
                //Y,M,和@都可以走
            {
                vis[ne.x][ne.y] = 1;
                q.push(ne);
                if (ch[ne.x][ne.y] == '@')
                {
                    num[ne.x][ne.y] += ne.step;//这里是+=,不是=,因为这点是@,记录的是两人到这的总时间
                }
            }
        }
    }
}
int main()
{
    int yx,yy,mx,my,i,j;
    while (~scanf("%d%d",&n,&m))
    {
        for (i = 0; i < n; ++i)
        {
            getchar();
            for (j = 0; j < m; ++j)
            {
                scanf("%c",&ch[i][j]);
                if (ch[i][j] == 'Y')
                {
                    yx = i;
                    yy = j;
                }
                else if (ch[i][j] == 'M')
                {
                    mx = i;
                    my = j;
                }
            }
        }
        memset(vis,0,sizeof(vis));
        memset(num,0,sizeof(num));
        bfs(yx,yy);
        memset(vis,0,sizeof(vis));
        bfs(mx,my);
        int ans = 9999999;
        for (i = 0; i < n; ++i)//找最小总时间
        {
            for (j = 0; j < m; ++j)
            {
                if (num[i][j] != 0 && ans > num[i][j])
                    ans = num[i][j];
            }
        }
        printf("%d\n",ans*11);
    }
    return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值