HDU 2612 水BFS

两个人(Y和M)要在‘@’处相遇,图中有不定个‘@’;

对每个人做一遍BFS即可,然后枚举每个‘@’位置

#include "stdio.h"
#include "string.h"
#include "queue"
using namespace std;
const int inf=0x7fffffff;
const int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
struct node
{
    int x,y,t;
};

int y_n,y_m,m_n,m_m,n,m;
char str[210][210];
int sum[210][210],mark[210][210];

int Min(int a,int b)
{
    if (a<b) return a;else return b;
}

int judge(int x,int y)
{
    if (x<0 || y<0 || x>=n || y>=m) return 0;
    if (mark[x][y]==1) return 0;
    if (str[x][y]=='#') return 0;
    return 1;
}

void bfs()
{
    queue<node>q,qq;
    node cur,next;
    int i;
    cur.x=y_n;
    cur.y=y_m;
    cur.t=0;
    memset(mark,0,sizeof(mark));
    mark[y_n][y_m]=1;
    sum[cur.x][cur.y]=0;
    q.push(cur);
    while (!q.empty())
    {
        cur=q.front();
        q.pop();
        for (i=0;i<4;i++)
        {
            next.x=cur.x+dir[i][0];
            next.y=cur.y+dir[i][1];
            if (judge(next.x,next.y)==0) continue;
            next.t=cur.t+1;
            mark[next.x][next.y]=1;
            sum[next.x][next.y]=next.t;
            q.push(next);
        }
    }

    cur.x=m_n;
    cur.y=m_m;
    cur.t=0;
    memset(mark,0,sizeof(mark));
    mark[m_n][m_m]=1;
    qq.push(cur);
    while(!qq.empty())
    {
        cur=qq.front();
        qq.pop();
        for (i=0;i<4;i++)
        {
            next.x=cur.x+dir[i][0];
            next.y=cur.y+dir[i][1];
            if (judge(next.x,next.y)==0) continue;
            next.t=cur.t+1;
            mark[next.x][next.y]=1;
            sum[next.x][next.y]+=next.t;
            qq.push(next);
        }
    }
}
int main()
{
    int i,j,ans;
    while (scanf("%d%d",&n,&m)!=EOF)
    {
        for (i=0;i<n;i++)
            scanf("%s",str[i]);
        for (i=0;i<n;i++)
            for (j=0;j<m;j++)
            if (str[i][j]=='Y')
            {
                y_n=i;
                y_m=j;
            }
            else
            if (str[i][j]=='M')
            {
                m_n=i;
                m_m=j;
            }
        memset(sum,-1,sizeof(sum));

        bfs();
        ans=inf;
        for (i=0;i<n;i++)
            for (j=0;j<m;j++)
            if (str[i][j]=='@' && sum[i][j]!=-1)
                ans=Min(ans,sum[i][j]);

        printf("%d\n",ans*11);
    }
    return 0;
}
时间: 2024-10-04 11:16:22

HDU 2612 水BFS的相关文章

BFS(最短路) HDU 2612 Find a way

题目传送门 1 /* 2 BFS:和UVA_11624差不多,本题就是分别求两个点到KFC的最短路,然后相加求最小值 3 */ 4 /************************************************ 5 Author :Running_Time 6 Created Time :2015-8-4 19:36:36 7 File Name :HDOJ_2612.cpp 8 ************************************************

Problem N HDU 2612 Find a way (两次BFS求最值)

N - Find a way Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Submit Status Practice HDU 2612 Description Pass a year learning in Hangzhou, yifenfei arrival hometown Ningbo at finally. Leave Ningbo one year, yifenfei hav

HDU 2612 -Find a way (注意细节的BFS)

题目链接:Find a Way 题目不难,前几天做,当时准备写双向BFS的,后来处理细节上出了点问题,赶上点事搁置了,今天晚上重写的,没用双向,用了两次BFS搜索,和双向BFS 道理差不多,只是这题有个小坑,需要注意 1.Y不能经过M,M不能经过Y,也就是说有Y和M的格子,可以默认为是墙 2.必须是Y和M都能到达的KFC才行,只是其中一个到达不行 例如下列数据:答案既不是22 也不是 88 而是110,左下角的KFC满座条件 5 5 Y..#@ ...M. ....# ..... @.... 小

[ACM] hdu 1242 Rescue (BFS+优先队列)

Rescue Problem Description Angel was caught by the MOLIGPY! He was put in prison by Moligpy. The prison is described as a N * M (N, M <= 200) matrix. There are WALLs, ROADs, and GUARDs in the prison. Angel's friends want to save Angel. Their task is:

HDU 4968 (水dp 其他?)

1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 #include <vector> 5 #include <map> 6 using namespace std; 7 const int inf = 0x3f3f3f3f; 8 const int MAX = 200+10; 9 double GPA[10],dp1[20][30000],dp2[20][30000

hdu 4416 水题 浙大计算机研究生复试上机考试-2005年 可是发现自己写代码有问题

Spring3与Hibernate4整合时出现了nested exception is java.lang.NoClassDefFoundError: Lorg/hibernate/cache/CacheProvider. hibernate3的时候,用spring来控制sessionfactory用的可以是org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean,因为用的是hibernate4所以照猫画

hdu 4856 Tunnels(bfs+状态压缩)

题目链接:hdu 4856 Tunnels 题目大意:给定一张图,图上有M个管道,管道给定入口和出口,单向,现在有人想要体验下这M个管道,问最短需要移动的距离,起点未定. 解题思路:首先用bfs处理出两两管道之间移动的距离,然后后用状态压缩求出最短代价,dp[i][j],i表示的已经走过的管道,j是当前所在的管道. #include <cstdio> #include <cstring> #include <queue> #include <algorithm&g

POJ3984 迷宫问题【水BFS】

#include <cstdio> #include <cmath> #include <iostream> #include <algorithm> #include <cstdlib> #include <cstring> #include <map> #include <vector> using namespace std; map<string,int>mymap; map<stri

hdu 1104 数论+bfs

题意:给n,m,k;输出n经过+-*%后(n%k+k)%k==((n+1)%k)%k  输出最小路径与运算副 zsd:% 只是求余数 有正负 mod 是求模 无正负. yhd:对m*k求余对 对k求余不对 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 5