hdu2612(bfs)

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

题意:求2个点到任意一个KFC的距离之和,使其最小。

分析:由两个点出发分别两次bfs,求得到每个KFC的距离,再枚举每个KFC求得最小距离和即可。刚开始以为KFC不能通过,wa了一次,坑。。。

#include <cstdio>
#include <cstring>
#include <cmath>
#include <iostream>
#include <algorithm>
#include <queue>
#include <cstdlib>
#include <stack>
#include <vector>
#include <set>
#include <map>
#define LL long long
#define mod 1000000007
#define inf 0x3f3f3f3f
#define N 100010
using namespace std;
int n,m;
char s[210][210];
int vis[210][210];
int step1[210][210],step2[210][210];
struct node
{
    int x,y;
};
int dx[]={0,0,1,-1};
int dy[]={1,-1,0,0};
int judge(int x,int y)
{
    return x>=0&&x<n&&y>=0&&y<m&&s[x][y]!=‘#‘;
}
void bfs(int x,int y,int flag)
{
    queue<node>que;
    memset(vis,0,sizeof(vis));
    node cur,nxt;
    cur.x=x;cur.y=y;
    que.push(cur);
    vis[x][y]=1;
    while(!que.empty())
    {
        cur=que.front();que.pop();
        int xx=cur.x,yy=cur.y;
        for(int i=0;i<4;i++)
        {
            int a=xx+dx[i],b=yy+dy[i];
            if(judge(a,b)&&!vis[a][b])
            {
                if(flag)
                step1[a][b]=step1[xx][yy]+1;
                else step2[a][b]=step2[xx][yy]+1;
                vis[a][b]=1;
                nxt.x=a,nxt.y=b;
                que.push(nxt);
            }
        }
    }
}
int main()
{
    int x,y,a,b;
    while(scanf("%d%d",&n,&m)>0)
    {
        for(int i=0;i<n;i++)
            scanf("%s",s[i]);
        for(int i=0;i<n;i++)
        for(int j=0;j<m;j++)
        {
            if(s[i][j]==‘Y‘)
            {
                x=i;y=j;
            }
            if(s[i][j]==‘M‘)
            {
                a=i;b=j;
            }
        }
        memset(step1,0,sizeof(step1));
        memset(step2,0,sizeof(step2));
        bfs(x,y,0);bfs(a,b,1);
        int ans=inf;
        for(int i=0;i<n;i++)
            for(int j=0;j<m;j++)
        {
            if(s[i][j]==‘@‘&&step1[i][j]&&step2[i][j])
            {
                ans=min(ans,step1[i][j]+step2[i][j]);
            }
        }
        printf("%d\n",ans*11);
    }
}

时间: 2024-08-01 05:21:40

hdu2612(bfs)的相关文章

pots(BFS)

D - Pots Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu Submit Status Description You are given two pots, having the volume of A and B liters respectively. The following operations can be performed: Input On the first and

USACO抓牛catchcow (bfs)

这题是黄巨大出的比赛题. http://poj.org/problem?id=3278 Description Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and the cow is at a point K (0 ≤ K ≤

hdu 1728 逃离迷宫 (BFS)

逃离迷宫 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 14376    Accepted Submission(s): 3458 Problem Description 给定一个m × n (m行, n列)的迷宫,迷宫中有两个位置,gloria想从迷宫的一个位置走到另外一个位置,当然迷宫中有些地方是空地,gloria可以穿越,有些地方

牛汇(BFS)入金具体流程(图文指导)

牛汇开户流程:bfsforex牛汇入金教程 所谓入金,也就是充值的意思,必须充钱到平台才能进行外汇交易.首先,我们先登录bfsforex牛汇官方网站,在交易办公室功能区域下面,点击账户入金: 为您提供中国各大银行的网银支付解决方案,支持人民币支付,和信用卡入金,入金是实时到账的. 牛汇(BFS)入金具体流程(图文指导),布布扣,bubuko.com

URAL 1930 Ivan&#39;s Car(BFS)

Ivan's Car Time limit: 1.5 secondMemory limit: 64 MB The world is in danger! Awful earthquakes are detected all over the world. Houses are destroyed, rivers overflow the banks, it is almost impossible to move from one city to another. Some roads are

【判重+广搜(bfs)】魔板

判重+广搜(bfs)]魔板 Time Limit: 1000MS Memory Limit: 32768KB Special Judge 有一个两行四列的魔板,每个格子里有一个1到8的数字(数字唯一),现在我们可以对魔板进行以下操作: 1.交换两行的数字. 2.将第一列移到第二列,第二列到第三列,第三列到第四列,第四列到第一列. 3.将中间四个数顺时针转一次. 现给你初始状态,我末状态请你用最小的步数将它从初始状态变到末状态. 输入: 前两行,每行4个数表示初状态. 后两行,每行4个数表示末状态

[LeetCode] Binary Tree Zigzag Level Order Traversal(bfs)

Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and alternate between). For example: Given binary tree {3,9,20,#,#,15,7}, 3 / 9 20 / 15 7 return its zig

USACO Mother&amp;#39;s Milk(bfs)

a=9MvljJDNdls&S=milk3">题目请点我 题解: 水杯倒水的问题非常经典,套路也是一样的,bfs找出全部状态. 这道题的关键在于每次都应该进行六次的倒水尝试,细心一点.PS:三维数组表示状态真的非常方便. 代码实现: /* ID: eashion LANG: C++ TASK: milk3 */ #include <iostream> #include <cstdio> #include <cstdlib> #include &l

[C++]广度优先搜索(BFS)(附例题)

广度优先搜索(BFS)(附例题) 问题产生: Isenbaev是国外的一个大牛. 现在有许多人要参加ACM ICPC. 一共有n个组,每组3个人.同组的3个人都是队友. 大家都想知道自己与大牛的最小距离是多少. 大牛与自己的最小距离当然是0.大牛的队友和大牛的最小距离是1.大牛的队友的队友和大牛的最小距离是2--以此类推. 如果实在和大牛没有关系的只好输出undefined了. 第一行读入n.表示有n个组.1 ≤ n ≤ 100 接下来n行,每行有3个名字,名字之间用空格隔开.每个名字的开头都是