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先求出来两点间的最短距离, *************** ...
随机推荐
- javascript设计模式学习之九——命令模式
一.命令模式使用场景及定义 命令模式常见的使用场景是:有时候需要向某些对象发送请求,但是并不知道请求的接受者是谁,也不知道请求的具体操作是什么.此时希望用一种松耦合的方式来设计程序,使得请求的发送者和 ...
- windows Azure 域名绑定
windows Azure 的虚拟机的ip是会变化的,比如你关机.所以绑定域名用A记录就不太可靠. 你新建虚拟机的同时,也会新建一个云服务,给你一个类似XX.cloudapp.net的二级域名. 这样 ...
- Latex技巧
文件.tex 文件打开 error reading 版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明http://www.blogbus.com/jzhao-logs/27226136 ...
- MySQL部分1
MySQL有三个层次 1.文件层次:放在硬盘上存东西的 必须要放在硬盘上 2.服务层次:必须要通过MySQL这个服务才能操作里面哪个内容 3.界面层次:默认不提供界面,需要安装navicat8(界面 ...
- 创建Java类并实例化深入理解
package com.sanguosha.java; import java.util.Scanner;//导入包 public class TestPerson { public static v ...
- FileInputStream and FileOutputStream
Java FileOutputStream class Java FileOutputStream is an output stream for writing data to a file. If ...
- TPageControl组件
TPageControl的功能是创建多个Dialog页,而这些重叠的每一个页Dialog就是通过TTabSheet对象实现的
- 点的双联通+二分图的判定(poj2942)
Knights of the Round Table Time Limit: 7000MS Memory Limit: 65536K Total Submissions: 10804 Acce ...
- Java基础(4):Scanner输入的典型应用
import java.util.Scanner; /* * 功能:为指定的成绩加分,直到分数大于等于60为止 * 输出加分前的成绩和加分后的成绩,并且统计加分的次数 * 步骤: * 1.定义一个变量 ...
- paper 3:matlab中save,load使用方法小结
功能描述]存储文件[软件界面]MATLAB->File->Save Workspace As将变量存入硬盘中指定路径.[函数用法] save:该函数将所有workspace中变量用二进制格 ...