Description

The Borg is an immensely powerful race of enhanced humanoids from the delta quadrant of the galaxy. The Borg collective is the term used to describe the group consciousness of the Borg civilization. Each Borg individual is linked to the collective by a sophisticated subspace network that insures each member is given constant supervision and guidance. 

Your task is to help the Borg (yes, really) by developing a program which helps the Borg to estimate the minimal cost of scanning a maze for the assimilation of aliens hiding in the maze, by moving in north, west, east, and south steps. The tricky thing is that the beginning of the search is conducted by a large group of over 100 individuals. Whenever an alien is assimilated, or at the beginning of the search, the group may split in two or more groups (but their consciousness is still collective.). The cost of searching a maze is definied as the total distance covered by all the groups involved in the search together. That is, if the original group walks five steps, then splits into two groups each walking three steps, the total distance is 11=5+3+3.

Input

On the first line of input there is one integer, N <= 50, giving the number of test cases in the input. Each test case starts with a line containg two integers x, y such that 1 <= x,y <= 50. After this, y lines follow, each which x characters. For each character, a space `` '' stands for an open space, a hash mark ``#'' stands for an obstructing wall, the capital letter ``A'' stand for an alien, and the capital letter ``S'' stands for the start of the search. The perimeter of the maze is always closed, i.e., there is no way to get out from the coordinate of the ``S''. At most 100 aliens are present in the maze, and everyone is reachable.

Output

For every test case, output one line containing the minimal cost of a succesful search of the maze leaving no aliens alive.

Sample Input

2
6 5
#####
#A#A##
# # A#
#S ##
#####
7 7
#####
#AAA###
# A#
# S ###
# #
#AAA###
#####

Sample Output

8
11
题意:有x个点,其中有一个是起点,起点有不多于100个人,告诉你一张地图,地图上分布着这些点,起点用'S'表示,其余点用‘A’表示,可以走的路为‘ ’,不能走的为‘#’
求从起点出发到所有点所需的最小路径,可以在任意位置分出任意人向某点前进,保证人够,多人走同一路径距离只算一遍
题解:这题题意好难理解……理解后就好办了,题意可以转化为已知x个点的位置,用x-1条边将其连起来,使总边权最小,那不就是一道最小生成树吗?
因为有‘#’的存在,所以必须要把点与点之间的距离用bfs扫出来,之后写一遍最小生成树,然后就没问题了!
新年第一道题1A,真是愉快 代码如下:
#include<queue>
#include<vector>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std; struct node
{
int from,to,dis;
}si[]; int vis[][],fa[],cnt[][],d[][],tmp=,sum=,ans=,dx[]={,,,-},dy[]={,,-,};
char c[][];
int ttt,n,m; void mem(int n)
{
for(int i=;i<=n;i++)
{
fa[i]=i;
}
} bool cmp(node x,node y)
{
return x.dis<y.dis;
} int find(int x)
{
if(fa[x]!=x)
{
fa[x]=find(fa[x]);
}
return fa[x];
} int union_(int x,int y)
{
int fx=find(x);
int fy=find(y);
if(fx==fy)
{
return ;
}
fa[fy]=fx;
return ;
} void bfs(int x1,int y1)
{
memset(vis,,sizeof(vis));
memset(cnt,,sizeof(cnt));
queue< pair<int,int> > q;
q.push(make_pair(x1,y1));
vis[x1][y1]=;
while(!q.empty())
{
int x=q.front().first;
int y=q.front().second;
q.pop();
for(int i=;i<=;i++)
{
int dx1=x+dx[i];
int dy1=y+dy[i];
if(dx1<=||dx1>n||dy1<=||dy1>m)
{
continue;
}
if(d[dx1][dy1]!=-&&!vis[dx1][dy1])
{
vis[dx1][dy1]=;
cnt[dx1][dy1]=cnt[x][y]+;
q.push(make_pair(dx1,dy1));
}
if(d[dx1][dy1]>)
{
si[++sum].from=d[x1][y1];
si[sum].to=d[dx1][dy1];
si[sum].dis=cnt[dx1][dy1];
}
}
}
} int main()
{
scanf("%d",&ttt);
while(ttt--)
{
sum=;
ans=;
tmp=;
scanf("%d%d\n",&m,&n);
mem();
for(int i=;i<=n;i++)
{
gets(c[i]);
for(int j=;j<m;j++)
{
if(c[i][j]=='#')
{
d[i][j+]=-;
}
else
{
if(c[i][j]==' ')
{
d[i][j+]=;
}
else
{
if(c[i][j]=='A'||c[i][j]=='S')
{
d[i][j+]=++tmp;
}
}
}
}
}
for(int i=;i<=n;i++)
{
for(int j=;j<=m;j++)
{
if(d[i][j]>)
{
bfs(i,j);
}
}
}
sort(si+,si+sum+,cmp);
for(int i=;i<=sum;i++)
{
if(union_(si[i].from,si[i].to))
{
ans+=si[i].dis;
}
}
printf("%d\n",ans);
}
}


POJ3026 Borg Maze(bfs求边+最小生成树)的更多相关文章

  1. POJ3026——Borg Maze(BFS+最小生成树)

    Borg Maze DescriptionThe Borg is an immensely powerful race of enhanced humanoids from the delta qua ...

  2. poj 3026 Borg Maze bfs建图+最小生成树

    题目说从S开始,在S或者A的地方可以分裂前进. 想一想后发现就是求一颗最小生成树. 首先bfs预处理得到每两点之间的距离,我的程序用map做了一个映射,将每个点的坐标映射到1-n上,这样建图比较方便. ...

  3. POJ - 3026 Borg Maze BFS加最小生成树

    Borg Maze 题意: 题目我一开始一直读不懂.有一个会分身的人,要在一个地图中踩到所有的A,这个人可以在出发地或者A点任意分身,问最少要走几步,这个人可以踩遍地图中所有的A点. 思路: 感觉就算 ...

  4. POJ3026 Borg Maze(Prim)(BFS)

    Borg Maze Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 12729   Accepted: 4153 Descri ...

  5. poj 3026 Borg Maze (BFS + Prim)

    http://poj.org/problem?id=3026 Borg Maze Time Limit:1000MS     Memory Limit:65536KB     64bit IO For ...

  6. POJ3026 Borg Maze 2017-04-21 16:02 50人阅读 评论(0) 收藏

    Borg Maze Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 14165   Accepted: 4619 Descri ...

  7. POJ3026 Borg Maze(最小生成树)

    题目链接. 题目大意: 任意两点(点表示字母)可以连线,求使所有点连通,且权值和最小. 分析: 第一感觉使3维的BFS.但写着写着,发现不对. 应当用最小生成树解法.把每个字母(即A,或S)看成一个结 ...

  8. poj 3026 Borg Maze (bfs + 最小生成树)

    链接:poj 3026 题意:y行x列的迷宫中,#代表阻隔墙(不可走).空格代表空位(可走).S代表搜索起点(可走),A代表目的地(可走),如今要从S出发,每次可上下左右移动一格到可走的地方.求到达全 ...

  9. POJ - 3026 Borg Maze bfs+最小生成树。

    http://poj.org/problem?id=3026 题意:给你一个迷宫,里面有 ‘S’起点,‘A’标记,‘#’墙壁,‘ ’空地.求从S出发,经过所有A所需要的最短路.你有一个特殊能力,当走到 ...

随机推荐

  1. 你知道PORT吗?

    在TCP协议中,有端口(PORT)的概念,很多人都不知道端口到底是什么.之前介绍过物理地址,也就是网卡地址,做个不恰当的比喻,物理地址(MAC)地址,相当于身份证(唯一),家庭地址是几幢几单元相当于I ...

  2. php图像处理函数imagecopyresampled

    语法 bool imagecopyresampled ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , i ...

  3. 五 搭建kafka集群

    1 下载    wget http://mirrors.tuna.tsinghua.edu.cn/apache/kafka/2.0.0/kafka_2.12-2.0.0.tgz 2 tar  -zxv ...

  4. mac常用命令(随时更新)

    mac 强制退出快捷键 1.使用键盘快捷键强制退出处于活跃状态的Mac程序 快捷键:Command+Option+Shift+Esc 这样按住一两秒钟,就可以强制退出当前程序了,算是最方便的一种方法. ...

  5. Py修行路 python基础(二)变量 字符 列表

    变量 容器 变量名 标记 数据的作用 字符编码 二进制位 = bit1个二进制位是计算机里的最小表示单元 1个字节是计算机里最小的存储单位 8bits = 1Byte =1字节1024Bytes = ...

  6. java成神之——date和calendar日期的用法

    date和calendar日期的用法 util的data转换成sql的data 创建Date对象 格式化 Instant ChronoUnit LocalTime LocalDate LocalDat ...

  7. Apache rewrite 出现 400 Bad Request 的解决方法

    <VirtualHost *:80 *:81>         ServerAdmin deng5765@163.com         DocumentRoot /active/www/ ...

  8. thingsboard在windows下安装和使用

    在官网下载thingsboard和tb-gateway 需要安装java8 thingsboard服务安装 https://thingsboard.io/docs/user-guide/install ...

  9. JS,JQUERY 常用笔记

    JSON.parse() 转成数组对象 JSON.stringify() 转成JSON字符串

  10. Easyui Datagrid 如何实现后台交互显示用户数据列表

    转自:https://blog.csdn.net/Tomsheng321/article/details/50722571?utm_source=blogxgwz9 新手初学的时候可能有个疑问:如何在 ...