poj 3026 bfs+prim Borg Maze
| Time Limit: 1000MS | Memory Limit: 65536K | |
| Total Submissions: 9718 | Accepted: 3263 |
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
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
Sample Input
2
6 5
#####
#A#A##
# # A#
#S ##
#####
7 7
#####
#AAA###
# A#
# S ###
# #
#AAA###
#####
Sample Output
8
11
Source
注意注意,本题两大神坑
1 数组题里面说的是50,其实开100都是Wa,我开到300就AC了
2 再输入完行与列后,不可以用getchar()在进行输入空行,,,,,,必须用gets(str[0]);
本题详解
在一个y行 x列的迷宫中,有可行走的通路空格’ ‘,不可行走的墙’#’,还有两种英文字母A和S,现在从S出发,要求用最短的路径L连接所有字母,输出这条路径L的总长度。
根据题意的“分离”规则,重复走过的路不再计算
因此当使用prim算法求L的长度时,根据算法的特征恰好不用考虑这个问题(源点合并很好地解决了这个问题),L就是最少生成树的总权值W
由于使用prim算法求在最小生成树,因此无论哪个点做起点都是一样的,(通常选取第一个点),因此起点不是S也没有关系
所以所有的A和S都可以一视同仁,看成一模一样的顶点就可以了
最后要注意的就是 字符的输入
cin不读入空字符(包括 空格,换行等)
gets读入空格,但不读入换行符)
剩下的问题关键就是处理 任意两字母间的最短距离,由于存在了“墙#” ,这个距离不可能单纯地利用坐标加减去计算,必须额外考虑,推荐用BFS(广搜、宽搜),这是本题的唯一难点,因为prim根本直接套用就可以了
求 任意两字母间的最短距离 时不能直接用BFS求,
1、必须先把矩阵中每一个允许通行的格看做一个结点(就是在矩阵内所有非#的格都作为图M的一个顶点),对每一个结点i,分别用BFS求出它到其他所有结点的权值(包括其本身,为0),构造结点图M;
2、然后再加一个判断条件,从图M中抽取以字母为顶点的图,进而构造字母图N
这个判定条件就是当结点图M中的某点j为字母时,把i到j的权值再复制(不是抽离)出来,记录到字母图N的邻接矩阵中
3、剩下的就是对字母图N求最小生成树了
#include<stdio.h>
#include<string.h>
#include<iostream>
#include<queue>
#include<algorithm>
using namespace std;
char str[][];
int vis[],tvis[][],dis[],tdis[][];
int point[][];
int map[][];
struct node{
int x;
int y;
};
int tnext[][]={,,,,-,,,-};
int ans,x,y;
int prim(int u){
int sum=;
for(int i=;i<=ans;i++)
dis[i]=map[u][i];
vis[u]=;
for(int k=;k<ans;k++){
int tmin=;
int temp;
for(int j=;j<=ans;j++){
if(dis[j]<tmin&&!vis[j]){
tmin=dis[j];
temp=j;
}
}
sum+=tmin;
vis[temp]=;
for(int i=;i<=ans;i++){
if(dis[i]>map[temp][i]&&!vis[i])
dis[i]=map[temp][i];
} }
return sum;
}
void bfs(int tx,int ty){
memset(tvis,,sizeof(tvis));
memset(tdis,,sizeof(tdis));
queue<node>q;
node temp,next;
temp.x=tx;
temp.y=ty;
q.push(temp);
tvis[tx][ty]=;
int xx,yy;
while(!q.empty()){
temp=q.front();
q.pop();
if(point[temp.x][temp.y]){
map[point[tx][ty]][point[temp.x][temp.y]]=tdis[temp.x][temp.y];
} for(int k=;k<;k++){
next.x=xx=temp.x+tnext[k][];
next.y=yy=temp.y+tnext[k][];
if(xx>=&&xx<=x&&yy>=&&yy<=y&&!tvis[xx][yy]&&str[xx][yy]!='#'){
tdis[xx][yy]=tdis[temp.x][temp.y]+;
tvis[xx][yy]=;
q.push(next);
}
}
}
}
int main(){
int t;
scanf("%d",&t);
while(t--){
memset(point,,sizeof(point));
memset(str,,sizeof(str));
memset(vis,,sizeof(vis));
memset(dis,,sizeof(dis));
memset(map,,sizeof(map)); ans=; scanf("%d%d",&y,&x);
gets(str[]);
for(int i=;i<=x;i++){
gets(str[i]);
for(int j=;j<y;j++){
if(str[i][j]=='S'||str[i][j]=='A'){
point[i][j]=++ans;
}
}
}
for(int i=;i<=x;i++){
for(int j=;j<=y;j++){
if(point[i][j])
bfs(i,j);
}
}
printf("%d\n",prim());
}
return ;
}
poj 3026 bfs+prim Borg Maze的更多相关文章
- poj 3026(BFS+最小生成树)
Borg Maze Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 12032 Accepted: 3932 Descri ...
- Borg Maze - poj 3026(BFS + Kruskal 算法)
Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 9821 Accepted: 3283 Description The B ...
- Borg Maze POJ - 3026 (BFS + 最小生成树)
题意: 求把S和所有的A连贯起来所用的线的最短长度... 这道题..不看discuss我能wa一辈子... 输入有坑... 然后,,,也没什么了...还有注意 一次bfs是可以求当前点到所有点最短距离 ...
- 最小生成树+BFS J - Borg Maze
The Borg is an immensely powerful race of enhanced humanoids from the delta quadrant of the galaxy. ...
- poj 3026 Borg Maze (BFS + Prim)
http://poj.org/problem?id=3026 Borg Maze Time Limit:1000MS Memory Limit:65536KB 64bit IO For ...
- POJ 3026 : Borg Maze(BFS + Prim)
http://poj.org/problem?id=3026 Borg Maze Time Limit: 1000MS Memory Limit: 65536K Total Submissions ...
- 快速切题 poj 3026 Borg Maze 最小生成树+bfs prim算法 难度:0
Borg Maze Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8905 Accepted: 2969 Descrip ...
- POJ 3026 Borg Maze(bfs+最小生成树)
Borg Maze Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 6634 Accepted: 2240 Descrip ...
- POJ 3026 Borg Maze【BFS+最小生成树】
链接: http://poj.org/problem?id=3026 http://acm.hust.edu.cn/vjudge/contest/view.action?cid=22010#probl ...
随机推荐
- angular_$attrs
<!doctype html> <html> <head> <meta charset="utf-8"> <title> ...
- JSP页面的中文乱码
jsp页面显示中文乱码: jsp页面的编码方式有两个地方需要设置: <%@ page language="java" import="java.util. ...
- 详解js中的闭包
前言 在js中,闭包是一个很重要又相当不容易完全理解的要点,网上关于讲解闭包的文章非常多,但是并不是非常容易读懂,在这里以<javascript高级程序设计>里面的理论为基础.用拆分的方式 ...
- [转]SQL注入攻防入门详解
原文地址:http://www.cnblogs.com/heyuquan/archive/2012/10/31/2748577.html =============安全性篇目录============ ...
- 虚拟机去混杂模式与 vlan in vxlan 特性
1. 去混杂模式 1.1 背景 混杂模式(Promiscuous Mode)是指一台机器能够接收所有经过它的数据流,而不论其目的地址是否是它.是相对于通常模式(又称“非混杂模式”)而言的. 这被网络管 ...
- hdu1535 SPFA
2边SPFA 然后求和 #include<stdio.h> #include<string.h> #include<queue> #define INF 10000 ...
- 模式匹配KMP算法
关于KMP算法的原理网上有很详细的解释,我试着总结理解一下: KMP算法是什么 以这张图片为例子 匹配到j=5时失效了,BF算法里我们会使i=1,j=0,再看s的第i位开始能不能匹配,而KMP算法接下 ...
- Openjudge 8782 乘积最大
伤心,感冒了根本没精力肝题,只能做点小的 描述 今年是国际数学联盟确定的“2000——世界数学年”,又恰逢我国著名数学家华罗庚先生诞辰90周年.在华罗庚先生的家乡江苏金坛,组织了一场别开生面的数学智力 ...
- POJ2677 Tour(DP+双调欧几里得旅行商问题)
Tour Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 3929 Accepted: 1761 Description ...
- Extjs Form用法详解(适用于Extjs5)
Extjs Form是一个比较常用的控件,主要用来显示和编辑数据的,今天这篇文章将介绍Extjs Form控件的详细用法,包括创建Form.添加子项.加载和更新数据.验证等. 本文的示例代码适用于Ex ...