Description

  Harry Potter has some precious. For example, his invisible robe, his wand and his owl. When Hogwarts school is in holiday, Harry Potter has to go back to uncle Vernon's home. But he can't bring his precious with him. As you know, uncle Vernon never allows such magic things in his house. So Harry has to deposit his precious in the Gringotts Wizarding Bank which is owned by some goblins. The bank can be considered as a N × M grid consisting of N × M rooms. Each room has a coordinate. The coordinates of the upper-left room is (1,1) , the down-right room is (N,M) and the room below the upper-left room is (2,1)..... A 3×4 bank grid is shown below:

  Some rooms are indestructible and some rooms are vulnerable. Goblins always care more about their own safety than their customers' properties, so they live in the indestructible rooms and put customers' properties in vulnerable rooms. Harry Potter's precious are also put in some vulnerable rooms. Dudely wants to steal Harry's things this holiday. He gets the most advanced drilling machine from his father, uncle Vernon, and drills into the bank. But he can only pass though the vulnerable rooms. He can't access the indestructible rooms. He starts from a certain vulnerable room, and then moves in four directions: north, east, south and west. Dudely knows where Harry's precious are. He wants to collect all Harry's precious by as less steps as possible. Moving from one room to another adjacent room is called a 'step'. Dudely doesn't want to get out of the bank before he collects all Harry's things. Dudely is stupid.He pay you $1,000,000 to figure out at least how many steps he must take to get all Harry's precious.

 

Input

  There are several test cases. 
  In each test cases: 
  The first line are two integers N and M, meaning that the bank is a N × M grid(0<N,M <= 100). 
  Then a N×M matrix follows. Each element is a letter standing for a room. '#' means a indestructible room, '.' means a vulnerable room, and the only '@' means the vulnerable room from which Dudely starts to move. 
  The next line is an integer K ( 0 < K <= 4), indicating there are K Harry Potter's precious in the bank. 
  In next K lines, each line describes the position of a Harry Potter's precious by two integers X and Y, meaning that there is a precious in room (X,Y). 
  The input ends with N = 0 and M = 0 
 

Output

  For each test case, print the minimum number of steps Dudely must take. If Dudely can't get all Harry's things, print -1. 
 

Sample Input

2 3
##@
#.#
1
2 2
4 4
#@##
....
####
....
2
2 1
2 4
0 0
 

Sample Output

-1
5
 
感想:这题应该做的快一点的,结果花了24分钟,主要是中途变思路一开始是用spfa来做的,但是注意到只有四个宝物
思路:bfs出两点最少步数,枚举所有排列得到最优结果

#include <cstdio>
#include <cstring>
#include <queue>
#include <algorithm>
using namespace std;
typedef pair<int,int> P;
const int inf=0x7ffffff;
int n,m,k;
int px[],py[];//记录珍宝坐标,德拉克坐标设为第0个
int d[][];//记录珍宝间最短距离
char maz[][];//记录迷宫状态
int ind[][];//记录珍宝编号
bool vis[][];//bfs用
int dis[][];//bfs用,最短距
const int dx[]={,-,,};const int dy[]={,,-,};
bool ok(int x,int y){
return x>=&&x<n&&y>=&&y<m&&maz[x][y]!='#';
}
void bfs(int index){
int sx=px[index],sy=py[index];
for(int i=;i<n;i++)for(int j=;j<m;j++)dis[i][j]=inf;
memset(vis,,sizeof(vis));
vis[sx][sy]=true;
d[index][index]=;
dis[sx][sy]=;
queue<P>que;
que.push(P(sx,sy));
while(!que.empty()){
sx=que.front().first;sy=que.front().second;que.pop();
for(int i=;i<;i++){
int tx=sx+dx[i],ty=sy+dy[i];
if(ok(tx,ty)&&!vis[tx][ty]){
vis[tx][ty]=true;dis[tx][ty]=dis[sx][sy]+;
if(ind[tx][ty]!=||maz[tx][ty]=='@'){
d[index][ind[tx][ty]]=dis[tx][ty];}
que.push(P(tx,ty));
}
}
}
}
int getlength(int a[]){
int ans=;
for(int i=;i<k;i++)ans+=d[a[i]][a[i+]];
return ans;
}
int pre(){
int a[];//暴力枚举所有可能排列
for(int i=;i<=k;i++)a[i]=i;//需注意第一个排列
int ans=getlength(a);
while(next_permutation(a+,a+k+)){//注意不要直接排列k
ans=min(ans,getlength(a));
}
return ans;
}
int main(){
while(scanf("%d%d",&n,&m)){
if(n==&&m==)break;
for(int i=;i<n;i++){
scanf("%s",maz[i]);
}
scanf("%d",&k);
memset(ind,,sizeof(ind));
for(int i=;i<=k;i++){scanf("%d%d",px+i,py+i);px[i]--;py[i]--;ind[px[i]][py[i]]=i;}
for(int i=;i<n;i++){
for(int j=;j<m;j++){
if(maz[i][j]=='@'){
px[]=i;
py[]=j;
ind[i][j]=;
break;
}
}
}
for(int i=;i<;i++)for(int j=;j<;j++)d[i][j]=inf;
for(int i=;i<=k;i++)bfs(i);
int ans=pre();
printf("%d\n",ans==inf?-:ans);
}
return ;
}
 

hdu 4771 13 杭州 现场 B - Stealing Harry Potter's Precious 暴力bfs 难度:0的更多相关文章

  1. hdu 3682 10 杭州 现场 C To Be an Dream Architect 容斥 难度:0

    C - To Be an Dream Architect Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d &a ...

  2. HDU 4771 Stealing Harry Potter's Precious dfs+bfs

    Stealing Harry Potter's Precious Problem Description Harry Potter has some precious. For example, hi ...

  3. hdu 4770 13 杭州 现场 A - Lights Against Dudely 暴力 bfs 状态压缩DP 难度:1

    Description Harry: "But Hagrid. How am I going to pay for all of this? I haven't any money.&quo ...

  4. 【HDU 4771 Stealing Harry Potter's Precious】BFS+状压

    2013杭州区域赛现场赛二水... 类似“胜利大逃亡”的搜索问题,有若干个宝藏分布在不同位置,问从起点遍历过所有k个宝藏的最短时间. 思路就是,从起点出发,搜索到最近的一个宝藏,然后以这个位置为起点, ...

  5. hdu4771 Stealing Harry Potter's Precious(DFS,BFS)

    练习dfs和bfs的好题. #include<iostream> #include<cstdio> #include<cstdlib> #include<cs ...

  6. HDU 4771 Stealing Harry Potter's Precious (2013杭州赛区1002题,bfs,状态压缩)

    Stealing Harry Potter's Precious Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 ...

  7. HDU 4771 Stealing Harry Potter's Precious

    Stealing Harry Potter's Precious Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 ...

  8. hdu 4771 Stealing Harry Potter's Precious (2013亚洲区杭州现场赛)(搜索 bfs + dfs) 带权值的路径

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4771 题目意思:'@'  表示的是起点,'#' 表示的是障碍物不能通过,'.'  表示的是路能通过的: ...

  9. hdu 3685 10 杭州 现场 F - Rotational Painting 重心 计算几何 难度:1

    F - Rotational Painting Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & % ...

随机推荐

  1. XVII Open Cup named after E.V. Pankratiev Stage 14, Grand Prix of Tatarstan, Sunday, April 2, 2017 Problem J. Terminal

    题目:Problem J. TerminalInput file: standard inputOutput file: standard inputTime limit: 2 secondsMemo ...

  2. 杭电1020Encoding

    地址:http://acm.hdu.edu.cn/showproblem.php?pid=1020 题目: Problem Description Given a string containing ...

  3. lightGallery 一个视屏不播放 解决方法

    这次使用了lightGallery,感觉还不错.样式比较美观,并且支持响应式. 使用过程中,我遇到了下面的问题: 当我 .picsgallery里面只有一个 .gItem的时候.点击弹出幻灯片,再点击 ...

  4. SpringSource Tool Suite (STS)无法启动问题

    修改STS.ini,指定一个JRE路径: -vmD:\Program\Java\jdk1.7.0_79\bin\javaw.exe-startupplugins/org.eclipse.equinox ...

  5. Hexo博客部署codingNet静态资源无法加载

    用Hexo搭建的个人博客,部署到github的pages的话,好像百度搜索不到.所以在国内的codingNet的pages服务也一起部署一下,这样方便国内国外搜索引擎收录进来.具体部署教程我是参考这里 ...

  6. 屏蔽信号的多路选择I/O

    前边提到了多路I/O的方法,这一章屏蔽信号的多路选择与之前的多路I/O一致,只是增加了屏蔽信号的作用.多路选择I/O中我们使用的是select函数,屏蔽信号的多路选择I/O使用的是pselect函数, ...

  7. Ubuntu16.04安装Jenkins

    Jenkins基于JAVA,所以需要先安装jdk 安装java 在官网上下载jdk,http://www.oracle.com/technetwork/java/javase/downloads/jd ...

  8. ABP官方文档翻译 2.4 日志

    日志 服务端 获取记录器 基类日志记录器 配置 Abp.Castle.Log4Net包 客户端 服务端 ABP使用Castle Windsor`s 日志设备.它可以使用不同的日志类库:Log4Net, ...

  9. 此博客可能不再更新,往后博文将发布在 GitHub 中

    在 GitHub 上, 可以建立不同的仓库,显示分类可以更明确: 有不同分支,可以打很多次草稿: 用 markdown 语法来书写比较舒服(博客园也可以设置): 最主要的是 GitHub 装逼呀!!! ...

  10. Webpack -- 基础篇

    篇仅演示 webpack 的基础搭建,为入门和走通基本流程而写.仅 window 系统. 1. 安装一些东西 安装 nodeJS,下载链接.然后检查安装是否完成. 系统“开始”和“R”键同时按住,桌面 ...