POJ 3026 : Borg Maze(BFS + Prim)
http://poj.org/problem?id=3026
| Time Limit: 1000MS | Memory Limit: 65536K | |
| Total Submissions: 12086 | Accepted: 3953 |
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
做法:直接用BFS算出每个A或者S到其他A或者S的距离,建出图后用Prim算法直接做就可以了。(有一个坑点就是题目的Input貌似有点错误,输入完两个整数后需要再输入一个串再输入图。我也是看了Discuss才知道,还有个奇奇怪怪的地方,有人知道什么回事请告诉下我,谢谢)。
#include <cstdio>
#include <cstring>
#include <iostream>
#include <cmath>
#include <string>
#include <queue>
#include <vector>
#include <algorithm>
using namespace std;
#define MAXN 210
#define INF 1000000000
struct node
{
int x,y;
};
//node alien[210]; //这句是我之前写留下来的,可是不知道为什么删了之后就WA了,如果有人知道请务必告诉我(现在发现原来交C++就会错,交G++就不会了,不知道什么情况呀)
char maze[][];
int mp[][],low[],used[],vis[][],d[][];
int n,m,dx[]={,-,,},dy[]={,,,-},cnt; bool check(int x,int y)
{
if(d[x][y]==-&&maze[x][y]!='#'&&<=x&&x<=m&&<=y&&y<=n) return true;
else return false;
} void bfs(int sx,int sy)
{
queue<node> que;
while(!que.empty()) que.pop();
memset(d,-,sizeof(d));
node a;
a.x=sx;a.y=sy;
d[a.x][a.y]=;
que.push(a);
while(!que.empty()){
node b;
a=que.front();que.pop();
if(d[a.x][a.y]!=-){
mp[vis[sx][sy]][vis[a.x][a.y]]=d[a.x][a.y];
}
for(int k=;k<;k++){
int nx=dx[k]+a.x,ny=dy[k]+a.y;
if(check(nx,ny)){
b.x=nx,b.y=ny,d[b.x][b.y]=d[a.x][a.y]+;
que.push(b);
}
}
}
} int Prim()
{
int pos=,res=;
for(int i=;i<cnt;i++) low[i]=mp[pos][i];
for(int i=;i<cnt;i++){
int mi=INF;
for(int j=;j<cnt;j++){
if(!used[j]&&low[j]<mi){
mi=low[j],pos=j;
}
}
used[pos]=;
res+=low[pos];
for(int j=;j<cnt;j++){
if(!used[j]&&low[j]>mp[pos][j]){
low[j]=mp[pos][j];
}
}
}
return res;
} int main()
{
int t;
cin>>t;
while(t--){
memset(used,,sizeof(used));
memset(vis,-,sizeof(vis));
for(int i=;i<;i++)
for(int j=;j<;j++) mp[i][j]=INF;
cin>>n>>m;
char s[];
gets(s); //后面有些奇怪的东西,加上就AC了
cnt=;
for(int i=;i<m;i++){
gets(maze[i]);
} for(int i=;i<m;i++){
for(int j=;j<n;j++){
if(maze[i][j]=='S'||maze[i][j]=='A'){
vis[i][j]=cnt++;
}
}
}
for(int i=;i<m;i++){
for(int j=;j<n;j++){
if(vis[i][j]!=-) bfs(i,j);
}
}
int ans=Prim();
cout<<ans<<endl;
}
return ;
}
2016-05-20
POJ 3026 : Borg Maze(BFS + Prim)的更多相关文章
- POJ 3026 Borg Maze(bfs+最小生成树)
Borg Maze Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 6634 Accepted: 2240 Descrip ...
- Borg Maze(BFS+MST)
Borg Maze http://poj.org/problem?id=3026 Time Limit: 1000MS Memory Limit: 65536K Total Submissions ...
- 【POJ 3026】Borg Maze
id=3026">[POJ 3026]Borg Maze 一个考察队搜索alien 这个考察队能够无限切割 问搜索到全部alien所须要的总步数 即求一个无向图 包括全部的点而且总权值 ...
- POJ 3026 --Borg Maze(bfs,最小生成树,英语题意题,卡格式)
Borg Maze Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 16625 Accepted: 5383 Descri ...
- 快速切题 poj 3026 Borg Maze 最小生成树+bfs prim算法 难度:0
Borg Maze Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8905 Accepted: 2969 Descrip ...
- POJ 2796:Feel Good(单调栈)
http://poj.org/problem?id=2796 题意:给出n个数,问一个区间里面最小的元素*这个区间元素的和的最大值是多少. 思路:只想到了O(n^2)的做法. 参考了http://ww ...
- POJ 3318:Matrix Multiplication(随机算法)
http://poj.org/problem?id=3318 题意:问A和B两个矩阵相乘能否等于C. 思路:题目明确说出(n^3)的算法不能过,但是通过各种常数优化还是能过的. 这里的随机算法指的是随 ...
- POJ 1200:Crazy Search(哈希)
Crazy Search Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 32483 Accepted: 8947 Des ...
- J - Borg Maze - poj 3026(BFS+prim)
在一个迷宫里面需要把一些字母.也就是 ‘A’ 和 ‘B’连接起来,求出来最短的连接方式需要多长,也就是最小生成树,地图需要预处理一下,用BFS先求出来两点间的最短距离, *************** ...
随机推荐
- [算法]A General Polygon Clipping Library
A General Polygon Clipping Library Version 2.32 http://www.cs.man.ac.uk/~toby/alan/software/gpc.h ...
- SWING
第一个图形界面应用程序.图形用户界面简称GUI(Graphical User Interface),通过GUI用户可以更好地与计算机进行交互.Swing简介Swing工具包提供了一系列丰富的GUI 组 ...
- SQLSERVER:通过sys.tables实现批量删表、快速统计多表记录和
SQLSERVER:通过sys.tables实现批量删表,或者回滚表 begin try drop table #temp10 end try begin catch end catch select ...
- C++Primer 第四章
//1.当我们对运算符进行重载的时候,其包括运算对象的类型和返回值的类型都是由该运算符定义的,但是运算对象的个数和优先级,结合律都是不能改变的 //2.当一个对象被用作右值的时候,用的是对象的值(内容 ...
- swift语言实战晋级-1 Swift开发环境的搭建
想要进行Swift的学习,必须要有个开发环境.简单的说就是装好了Xcode的Mac系统.那么接下来我们就简单了解一下这方面的内容. 1.1 下载Xcode Xcode是苹果公司出的编程工具,类似于微软 ...
- 网易免费邮件开启smtp教程
网易免费邮件开启smtp教程 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 我们在部署zabbix邮件报警中可能会用到163.com.那么我们如何去开启smtp服务呢? 1 ...
- JavaScript内的类型转换
JavaScript内的类型转换 1.分为自动转换和强制转换,我们一般用强制转换.其他类型转换为整数是parseInt();其他类型转化为小数parseFloat(); 2.判断是不是一个合法数字 ...
- Python条件循环判断
1.条件判断语句 Python中条件选择语句的关键字为:if .elif .else这三个.其基本形式如下: 1 2 3 4 5 6 7 8 9 age_of_cc = 27 age = int( ...
- SQL in查询
--sal为员工工资 select * from emp;
- 0330 复利程序c语言版转java版 会逐渐更进版
import java.util.Scanner; public class compounding { public static void main(String[] args) { menu() ...