POJ3026(BFS + prim)
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 10554 | Accepted: 3501 |
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枚举每个字母之间的距离,再用prim求出最短的一条路径。
收获:了解了prim要初始化和1相连的边权。
这题还要再做一遍。
#include <cstdio>
#include <iostream>
#include <cstdlib>
#include <algorithm>
#include <ctime>
#include <cmath>
#include <string>
#include <cstring>
#include <stack>
#include <queue>
#include <list>
#include <vector>
#include <map>
#include <set>
using namespace std; const int INF=0x3f3f3f3f;
const double eps=1e-;
const double PI=acos(-1.0);
#define maxn 1000
struct Node
{
int x, y, dis;
};
Node st, et;
int vis[maxn][maxn];
char map1[maxn][maxn];
int vis2[maxn];
int node[maxn][maxn];
int edge[maxn][maxn];
int dis[maxn];
int pre[maxn];
int dx[] = {, , -, };
int dy[] = {, -, ,};
int sum, n, m;
void bfs(int i, int j)
{
memset(vis, , sizeof vis);
queue<Node> q;
Node st = {i, j, };
vis[i][j] = ;
q.push(st);
while(!q.empty())
{
Node t = q.front();
q.pop();
if(node[t.x][t.y])
edge[node[st.x][st.y]][node[t.x][t.y]] = t.dis;
for(int i = ; i < ; i++)
{
int x0 = t.x + dx[i];
int y0 = t.y + dy[i];
if(!vis[x0][y0] && map1[x0][y0] != '#' && x0>= && x0 < m && y0 >= && y0 < n)
{
vis[x0][y0] = ;
Node f = {x0, y0, t.dis+};
q.push(f);
}
}
} }
int low[maxn];
int Prim()
{
int s=,i,count=,prim_sum=,t;
bool flag[maxn]={false};
flag[s] = true;
for(i=; i<=sum; i++)
low[i] = ;
while(count < sum)
{
int min_dis = ;
for(i=; i<=sum; i++)
{
if(!flag[i] && low[i]>edge[s][i])
low[i] = edge[s][i];
if(!flag[i] && low[i]<min_dis)
{
min_dis = low[i];
t = i;
}
}
s = t; count++;
flag[s] = true;
prim_sum += min_dis;
}
return prim_sum;
} int main()
{
int t;
scanf("%d", &t);
while(t--)
{
scanf("%d%d", &n, &m);
char temp[];
gets(temp);
sum = ;
memset(node, , sizeof node);
memset(edge, , sizeof edge);
for(int i = ; i < m; i++)
{
gets(map1[i]);
for(int j = ; j < n; j++)
{
if(map1[i][j] == 'S' || map1[i][j] == 'A')
node[i][j] = ++sum;
}
}
for(int i = ; i < m; i++)
for(int j = ; j < n; j++)
if(node[i][j])
bfs(i, j);
printf("%d\n", Prim());
}
return ;
}
POJ3026(BFS + prim)的更多相关文章
- poj3026(bfs+prim)
The Borg is an immensely powerful race of enhanced humanoids from the delta quadrant of the galaxy. ...
- poj3026(bfs+prim)最小生成树
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: 65536K Total Submissions ...
- POJ 3026(BFS+prim)
http://poj.org/problem?id=3026 题意:任意两个字母可以连线,求把所有字母串联起来和最小. 很明显这就是一个最小生成树,不过这个题有毒.他的输入有问题.在输入m和N后面,可 ...
- J - Borg Maze - poj 3026(BFS+prim)
在一个迷宫里面需要把一些字母.也就是 ‘A’ 和 ‘B’连接起来,求出来最短的连接方式需要多长,也就是最小生成树,地图需要预处理一下,用BFS先求出来两点间的最短距离, *************** ...
- POJ3026 Borg Maze(Prim)(BFS)
Borg Maze Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 12729 Accepted: 4153 Descri ...
- [CSP-S模拟测试]:Star Way To Heaven(最小生成树Prim)
题目描述 小$w$伤心的走上了$Star\ way\ to\ heaven$. 到天堂的道路是一个笛卡尔坐标系上一个$n\times m$的长方形通道(顶点在$(0,0)$和$(n,m)$),小$w$ ...
- nyoj 21三个水杯(BFS + 栈)
题目链接: http://acm.nyist.net/JudgeOnline/problem.php?pid=21 思想: 看了一下搜索就来写了这题(BFS 找出最短路径 所以用此来进行搜索) 这题在 ...
- POJ3279 Catch That Cow(BFS)
本文来源于:http://blog.csdn.net/svitter 意甲冠军:给你一个数字n, 一个数字k.分别代表主人的位置和奶牛的位置,主任能够移动的方案有x+1, x-1, 2*x.求主人找到 ...
随机推荐
- nodejs 设置网络代理
在使用nodejs的过程中,加入使用代理上网,那么安装组件会失败,此时配置代理即可,命令如下: [root@oracle ~]#npm config set proxy=http://10.101.1 ...
- IOS开发错误提示原因集合-----长期更新
"[__NSCFConstantString size]: unrecognized selector sent to instance." =>将NSString类型的参数 ...
- Highcharts 非常实用的Javascript统计图
Highcharts 官网: http://www.highcharts.com Highcharts 官网示例:http://www.highcharts.com/demo/ Highcharts ...
- Codeforces 549F Yura and Developers
probelm 题意 给定一个序列和一个mod值,定义[l,r]合法当l到r的全部元素和减去当中的最大值的结果能够整除mod.问共同拥有多少区间合法. 思路 一開始想的分治. 对于一个[l,r]我们能 ...
- 数据分析系统DIY3/3:本地64位WIN7+matlab 2012b訪问VMware CentOS7+MariaDB
数据分析系统DIY中要完毕的三个任务. 一.用VMware装64位CentOS.数据库服务端用CentOS自带的就好. 二.数据採集与预处理用Dev-C++编程解决. 三.用本地Win7 64上的MA ...
- [跟我学spring学习笔记][更多DI知识]
延迟初始化Bean 定义: 延迟初始化也叫做惰性初始化,指不提前初始化Bean,在真正使用时才创建并初始化Bean 如何延迟: 配置方式很简单只需在标签上指定 “lazy-init” 属性值为“tru ...
- UIWindow & UIWindowLevel详解
一.UIWindow是一种特殊的UIView,通常在一个程序中只会有一个UIWindow,但可以手动创建多个UIWindow,同时加到程序里面.UIWindow在程序中主要起到三个作用: 1.作为容器 ...
- GitHub+hexo to Blog
title: GitHub+hexo to Blog date: 2014-12-26 09:44:53 tags: hexo, github --- 摘要 一直想要一个自己的博客,不过一直怯于对网站 ...
- VS2012 运行项目在IE中可以运行,但是在google和firefox却不能打开。
笔记本重装了系统之后,打开VS2012 调试的时候,发现在IE下能够运行调试.net项目,但是使用google和firefox的时候却不能打开项目.苦思冥想不知道是怎么回事儿,后来经过在网上查阅各种资 ...
- Centos安装php提示virtual memory exhausted: Cannot allocate memory
由于内存不够,需要在php配置的时候./configure最后添加上 --disable-fileinfo >>./configure --prefix= ........... -- ...