Problem Description
《Journey to the West》(also 《Monkey》) is one of the Four Great Classical Novels of Chinese literature. It was written by Wu Cheng'en during the Ming Dynasty. In this novel, Monkey King Sun Wukong, pig Zhu Bajie and Sha Wujing, escorted Tang Monk to India to get sacred Buddhism texts.

During the journey, Tang Monk was often captured by
demons. Most of demons wanted to eat Tang Monk to achieve immortality,
but some female demons just wanted to marry him because he was handsome.
So, fighting demons and saving Monk Tang is the major job for Sun
Wukong to do.

Once, Tang Monk was captured by the demon White
Bones. White Bones lived in a palace and she cuffed Tang Monk in a room.
Sun Wukong managed to get into the palace. But to rescue Tang Monk, Sun
Wukong might need to get some keys and kill some snakes in his way.

The palace can be described as a matrix of characters. Each character
stands for a room. In the matrix, 'K' represents the original position
of Sun Wukong, 'T' represents the location of Tang Monk and 'S' stands
for a room with a snake in it. Please note that there are only one 'K'
and one 'T', and at most five snakes in the palace. And, '.' means a
clear room as well '#' means a deadly room which Sun Wukong couldn't get
in.

There may be some keys of different kinds scattered in
the rooms, but there is at most one key in one room. There are at most 9
kinds of keys. A room with a key in it is represented by a digit(from
'1' to '9'). For example, '1' means a room with a first kind key, '2'
means a room with a second kind key, '3' means a room with a third kind
key... etc. To save Tang Monk, Sun Wukong must get ALL kinds of keys(in
other words, at least one key for each kind).

For each step,
Sun Wukong could move to the adjacent rooms(except deadly rooms) in 4
directions(north, west, south and east), and each step took him one
minute. If he entered a room in which a living snake stayed, he must
kill the snake. Killing a snake also took one minute. If Sun Wukong
entered a room where there is a key of kind N, Sun would get that key if
and only if he had already got keys of kind 1,kind 2 ... and kind N-1.
In other words, Sun Wukong must get a key of kind N before he could get a
key of kind N+1 (N>=1). If Sun Wukong got all keys he needed and
entered the room in which Tang Monk was cuffed, the rescue mission is
completed. If Sun Wukong didn't get enough keys, he still could pass
through Tang Monk's room. Since Sun Wukong was a impatient monkey, he
wanted to save Tang Monk as quickly as possible. Please figure out the
minimum time Sun Wukong needed to rescue Tang Monk.

 
Input
There are several test cases.

For each case, the first line includes two integers N and M(0 < N
<= 100, 0<=M<=9), meaning that the palace is a N×N matrix and
Sun Wukong needed M kinds of keys(kind 1, kind 2, ... kind M).

Then the N × N matrix follows.

The input ends with N = 0 and M = 0.

 
Output
For each test case, print the minimum time (in minutes) Sun Wukong
needed to save Tang Monk. If it's impossible for Sun Wukong to complete
the mission, print "impossible"(no quotes).
 
Sample Input
3 1
K.S
##1
1#T
3 1
K#T
.S#
1#.
3 2
K#T
.S.
21.
0 0
 
Sample Output
5
impossible
8
 
题意
孙悟空要去救师傅,K代表起点,T为唐僧位置,S代表有蛇的房间(不会超过五条蛇),#为剧毒房间,无法进入 带数字的房间为有钥匙的房间(不超过9个),孙悟空必须先拿到第一个钥匙,再拿第二个....最后拿到第m个钥匙,才能解救唐僧 没有拿到第m个钥匙的时候可以路过但是不能解救唐僧,路过有蛇的房间的时候需要花一分钟杀蛇,杀掉之后再经过时就不用再花时间杀蛇,但是每经过一个房间需要花费一分钟,求就出唐僧最短的时间。
 
分析
由于杀蛇需要花费时间,所以不能是找到了唐僧就是最短时间,必须将所有的可能性取最小值,这是这道题和不同的bfs最大的不同,另外,需要一个五位二进制数来存目前杀蛇的情况(这样一个数就可以概括全部的五条蛇,当然我认为也可以用一个数组来存,但是太费空间)
 
下面是代码,直接看代码更容易理解
  #include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <queue>
using namespace std;
#define N 105
#define INF 0x3f3f3f3f struct node
{
int x, y, t, key, snake;
node() {}
node(int x, int y, int t, int key, int snake) : x(x), y(y), t(t), key(key), snake(snake) {}
};
bool vis[N][N][][];
int n, m, sx, sy, ex, ey;
int dx[] = {, -, , }, dy[] = {, , , -};
char maze[N][N]; bool check(int x, int y)
{
if(<=x&&x<n&&<=y&&y<n&&maze[x][y]!='#') return true; //判断能不能走
return false;
} void bfs()
{
int ans = INF;
memset(vis, , sizeof(vis));
queue<node> que;
while(!que.empty()) que.pop(); //清空队列 因为有多个测试
que.push(node(sx, sy, , , ));
while(!que.empty()) {
node top = que.front(); que.pop();
int x = top.x, y = top.y, key = top.key, snake = top.snake, t = top.t;
if(key == m && maze[x][y] == 'T') {
ans = min(ans, t); //取最短时间
}
if(vis[x][y][key][snake] != ) continue; //判断当前“状态”有没有访问过,注意是“状态”,不是房间,房间是可以重复访问的
vis[x][y][key][snake] = ;
for(int i = ; i < ; i++) {
int nx = x + dx[i], ny = y + dy[i];
if(!check(nx, ny)) continue;
node now = top;
if('A' <= maze[nx][ny] && maze[nx][ny] <= 'G') {
//只有五条蛇,不能写 <= 'Z'
int s = maze[nx][ny] - 'A';
if((<<s) & now.snake) ; //如果蛇被打了
else {
now.snake |= (<<s); //没被打,时间加1 记录打蛇情况
now.t++;
}
} else if(maze[nx][ny] - '' == now
.key + ) {
now.key++;
}
now.t++;
que.push(node(nx, ny, now.t, now.key, now.snake));
}
}
if(ans != INF) printf("%d\n", ans);
else printf("impossible\n");
} int main()
{
while(~scanf("%d%d", &n, &m), n+m) {
int cnt = ;
for(int i = ; i < n; i++) {
scanf("%s", maze[i]);
}
for(int i = ; i < n; i++) {
for(int j = ; j < n; j++) {
if(maze[i][j] == 'K') sx = i, sy = j;
if(maze[i][j] == 'S') {maze[i][j] = cnt+'A'; cnt++;}
}
}
bfs();
}
return ;
}

HDU 5025 Saving Tang Monk的更多相关文章

  1. hdu 5025 Saving Tang Monk 状态压缩dp+广搜

    作者:jostree 转载请注明出处 http://www.cnblogs.com/jostree/p/4092939.html 题目链接:hdu 5025 Saving Tang Monk 状态压缩 ...

  2. HDU 5025 Saving Tang Monk 【状态压缩BFS】

    任意门:http://acm.hdu.edu.cn/showproblem.php?pid=5025 Saving Tang Monk Time Limit: 2000/1000 MS (Java/O ...

  3. [ACM] HDU 5025 Saving Tang Monk (状态压缩,BFS)

    Saving Tang Monk Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) ...

  4. hdu 5025 Saving Tang Monk(bfs+状态压缩)

    Description <Journey to the West>(also <Monkey>) is one of the Four Great Classical Nove ...

  5. ACM学习历程—HDU 5025 Saving Tang Monk(广州赛区网赛)(bfs)

    Problem Description <Journey to the West>(also <Monkey>) is one of the Four Great Classi ...

  6. 2014 网选 广州赛区 hdu 5025 Saving Tang Monk(bfs+四维数组记录状态)

    /* 这是我做过的一道新类型的搜索题!从来没想过用四维数组记录状态! 以前做过的都是用二维的!自己的四维还是太狭隘了..... 题意:悟空救师傅 ! 在救师父之前要先把所有的钥匙找到! 每种钥匙有 k ...

  7. HDU 5025 Saving Tang Monk --BFS

    题意:给一个地图,孙悟空(K)救唐僧(T),地图中'S'表示蛇,第一次到这要杀死蛇(蛇最多5条),多花费一分钟,'1'~'m'表示m个钥匙(m<=9),孙悟空要依次拿到这m个钥匙,然后才能去救唐 ...

  8. HDU 5025 Saving Tang Monk(状态转移, 广搜)

    #include<bits/stdc++.h> using namespace std; ; ; char G[maxN][maxN], snake[maxN][maxN]; ]; int ...

  9. HDU 5025:Saving Tang Monk(BFS + 状压)

    http://acm.hdu.edu.cn/showproblem.php?pid=5025 Saving Tang Monk Problem Description   <Journey to ...

随机推荐

  1. 深入理解 Object.defineProperty 及实现数据双向绑定

    Object.defineProperty() 和 Proxy 对象,都可以用来对数据的劫持操作.何为数据劫持呢?就是在我们访问或者修改某个对象的某个属性的时候,通过一段代码进行拦截行为,然后进行额外 ...

  2. 任务调度工具Quartz入门笔记

    一,导包 1)官网下载:http://www.quartz-scheduler.org/downloads/ 2)Maven <dependency> <groupId>org ...

  3. Groovy语言学习--语法基础(2)

    集合和闭包 因为之前没接触过C++等,对指针也一窍不通.个人不成熟的了解 闭包是一种数据类型,可以很方便的执行一段独立的代码 简化方法的调用 package groovy /** * Groovy容器 ...

  4. Maven项目远程部署到Tomcat

    目录 Maven项目远程部署到Tomcat 一.Tomcat插件支持的目标 二.系统要求及插件引入 2.1 系统要求 2.2 引入插件 三.远程部署war到tomcat 3.1 添加tomcat管理角 ...

  5. 【C#复习总结】细说委托

    1 前言 本系列会将[委托] [匿名方法][Lambda表达式] [泛型委托] [表达式树] [事件]等基础知识总结一下.(本人小白一枚,有错误的地方希望大佬指正) 系类1:细说委托 系类2:细说匿名 ...

  6. [C#] LINQ之SelectMany

    声明:本文为www.cnc6.cn原创,转载时请注明出处,谢谢! 一.第一种用法: public static IEnumerable<TResult> SelectMany<TSo ...

  7. COMCMS 微进阶篇,从0开始部署到Centos 7.4

    言:上一篇,我们介绍了,如何本地调试和部署到windows服务器. 本篇,将带大家,从0到1,开始部署到Centos系统上... 经过测试,可以完美支持Centos.这也是.net core 跨平台的 ...

  8. 便于记忆的SA构造

    首先学习基数排序. memset(b, 0, sizeof(b)); for(int i = 0; i < n; i++) b[a[i]]++; for(int i = 1; i <= m ...

  9. poj2594 机器人寻找宝藏(最小路径覆盖)

    题目来源:http://poj.org/problem?id=2594 参考博客:http://www.cnblogs.com/ka200812/archive/2011/07/31/2122641. ...

  10. SQLSERVER事务日志已满 the transaction log for database 'xx' is full

    解决办法:清除日志 USE [master] GO ALTER DATABASE DNName SET RECOVERY SIMPLE WITH NO_WAIT GO ALTER DATABASE D ...