POJ3026 Borg Maze(bfs求边+最小生成树)
Description
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
Output
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求边+最小生成树)的更多相关文章
- POJ3026——Borg Maze(BFS+最小生成树)
Borg Maze DescriptionThe Borg is an immensely powerful race of enhanced humanoids from the delta qua ...
- poj 3026 Borg Maze bfs建图+最小生成树
题目说从S开始,在S或者A的地方可以分裂前进. 想一想后发现就是求一颗最小生成树. 首先bfs预处理得到每两点之间的距离,我的程序用map做了一个映射,将每个点的坐标映射到1-n上,这样建图比较方便. ...
- POJ - 3026 Borg Maze BFS加最小生成树
Borg Maze 题意: 题目我一开始一直读不懂.有一个会分身的人,要在一个地图中踩到所有的A,这个人可以在出发地或者A点任意分身,问最少要走几步,这个人可以踩遍地图中所有的A点. 思路: 感觉就算 ...
- POJ3026 Borg Maze(Prim)(BFS)
Borg Maze Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 12729 Accepted: 4153 Descri ...
- poj 3026 Borg Maze (BFS + Prim)
http://poj.org/problem?id=3026 Borg Maze Time Limit:1000MS Memory Limit:65536KB 64bit IO For ...
- POJ3026 Borg Maze 2017-04-21 16:02 50人阅读 评论(0) 收藏
Borg Maze Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 14165 Accepted: 4619 Descri ...
- POJ3026 Borg Maze(最小生成树)
题目链接. 题目大意: 任意两点(点表示字母)可以连线,求使所有点连通,且权值和最小. 分析: 第一感觉使3维的BFS.但写着写着,发现不对. 应当用最小生成树解法.把每个字母(即A,或S)看成一个结 ...
- poj 3026 Borg Maze (bfs + 最小生成树)
链接:poj 3026 题意:y行x列的迷宫中,#代表阻隔墙(不可走).空格代表空位(可走).S代表搜索起点(可走),A代表目的地(可走),如今要从S出发,每次可上下左右移动一格到可走的地方.求到达全 ...
- POJ - 3026 Borg Maze bfs+最小生成树。
http://poj.org/problem?id=3026 题意:给你一个迷宫,里面有 ‘S’起点,‘A’标记,‘#’墙壁,‘ ’空地.求从S出发,经过所有A所需要的最短路.你有一个特殊能力,当走到 ...
随机推荐
- 获取sonar扫描结果
api通过抓包获取 java 1.get和post方法 package com.tools.httpUtil; import java.io.BufferedReader; import java.i ...
- Amoeba mysql读写分离搭建及介绍
Amoeba mysql读写分离搭建及介绍 推荐: http://blog.chinaunix.net/uid-20639775-id-154600.html
- DataGrid方法标注
在VS2010中无法增加了CColumn和Ccolumns类 解决方案,方案名->右击->添加类->ActiveX控件中的MFC类->添加弹出了“从ActiveX控件添加类向导 ...
- tomcat 并发配置优化
修改tomcat/conf/server.xml配置文件. <Executor name="tomcatThreadPool" namePrefix="catali ...
- 在windows环境中使用varnish
varnish 的windows 版本下载地址: http://sourceforge.net/projects/cygvarnish/files/windows-zip-bundle/ ...
- 【转】Jmeter内存溢出处理方式记录
方法一: 使用jmeter进行压力测试时 遇到一段时间后报内存溢出outfmenmory错误,导致jmeter卡死了,先尝试在jmeter.bat中增加了JVM_ARGS="- Xmx204 ...
- Java-Runoob:Java 基本数据类型
ylbtech-Java-Runoob:Java 基本数据类型 1.返回顶部 1. Java 基本数据类型 变量就是申请内存来存储值.也就是说,当创建变量的时候,需要在内存中申请空间. 内存管理系统根 ...
- git rebase 与 merge(个人使用理解)
merge 是“合并”,rebase.cherry-pick 中文能理解成“重现” merge 一般是对于整个分支做处理,比如一个feature分支,功能开发完成经过测试了,我们会合并(merge)到 ...
- DVWA平台v1.8-SQL注入(low级别)
代码 <?php if(isset($_GET['Submit'])){ // Retrieve data $id = $_GET['id']; $getid = "SELECT fi ...
- 基本的Ceph性能测试工具和方法
测试环境 1. 测试准备 1.1 磁盘读写性能 1.1.1 单个 OSD 磁盘写性能,大概 165MB/s. root@ceph1:~# echo 3 > /proc/sys/vm/drop_c ...