Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 16625 | Accepted: 5383 |
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
Source
题意:给你一个图里面有S和A,让你求把S和A全部连在一起的最少消耗,明着最小生成树,但是每一个S和A之间的距离用bfs求出就行。
主要是题目有个坑,在n,和m后可能会有空行;
代码:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <queue>
#include <map>
using namespace std;
const int INF=0x3f3f3f3f;
char mapp[][];
int a[][];
int n,m;
int dx[]={,-,,};
int dy[]={,,,-};
struct node{
int x,y;
};
int flag[][];
bool vis[];
int minn[];
int cost[][];///记录总的各点到各点的距离
int cnt[][];///记录当前点到bfs到其他各点的距离
void bfs(int sx,int sy){ queue<node>q;
while(!q.empty())q.pop();
memset(cnt,-,sizeof(cnt));
cnt[sx][sy]=;
node first;
first.x=sx,first.y=sy;
q.push(first);
while(!q.empty()){
node now=q.front();
q.pop();
if(a[now.x][now.y]!=-)///记录到全局为生成树做准备
cost[a[sx][sy]][a[now.x][now.y]]=cnt[now.x][now.y];
for(int i=;i<;i++){
node next;
next.x=now.x+dx[i];
next.y=now.y+dy[i];
if(mapp[next.x][next.y]=='#'||cnt[next.x][next.y]!=-||next.x<||next.y<||next.x>=n||next.y>=m)continue;
cnt[next.x][next.y]=cnt[now.x][now.y]+;
q.push(next);
}
}
}
int prim(int n){
int ans=;
memset(vis,false,sizeof(vis));
vis[]=true;
for(int i=;i<n;i++)minn[i]=cost[][i];
for(int i=;i<n;i++){
int minc=INF;
int p=-;
for(int j=;j<n;j++){
if(!vis[j]&&minc>minn[j]){
minc=minn[j];
p=j;
}
}
ans+=minc;
vis[p]=true;
for(int j=;j<n;j++)
if(!vis[j]&&minn[j]>cost[p][j]){
minn[j]=cost[p][j];
}
}return ans;
}
int main()
{
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout);
int t;
cin>>t;
while(t--){
cin>>m>>n;
gets(mapp[]);
memset(a,-,sizeof(a));
int num=;
for(int i=;i<n;i++){
gets(mapp[i]);
for(int j=;j<m;j++){
if(mapp[i][j]=='A'||mapp[i][j]=='S')
a[i][j]=num++;
}
}
/* for(int i=0;i<n;i++){
cout<<mapp[i]<<endl;
}*/
for(int i=;i<n;i++){
for(int j=;j<m;j++){
if(a[i][j]!=-){
bfs(i,j);
}
}
}
/* for(int i=0;i<num;i++){
for(int j=0;j<num;j++){
cout<<cost[i][j]<<" ";
}
cout<<endl;
}*/
cout<<prim(num)<<endl;
}
return ;
}