Saving Tang Monk
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 579 Accepted Submission(s): 217
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.
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.
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
题意:
给出 N(0 ~ 100),M(0 ~ 9),代表有 N * N 的地图,且需要 M 号钥匙才能到达 T,K 代表起点,S 代表障碍,障碍可以攻击掉再走。K 需要收集 i 号钥匙才能收集 i + 1 号,问 K 最小多少步到达 T。可能存在多个 i 类钥匙,也可能出现多个 S,最多 5 个。
思路:
BFS。用数组记录 S 记录路径 S 是否被杀死过。从 1 -> 2 -> 3 …… -> M -> T 搜索。
AC:
#include <cstdio> #include <cstring> #include <algorithm> #include <queue> using namespace std; const int INF = 99999999; typedef struct { int S[50]; int x, y, len; } state; int Map[105][105]; int n, m, kx, ky, tx, ty, s_num; int dir[4][2] = {1, 0, 0, 1, -1, 0, 0, -1}; bool vis[105][105]; void bfs () { state from; memset(from.S, 0, sizeof(from.S)); from.x = kx, from.y = ky, from.len = 0; queue<state> fin; fin.push(from); while (!fin.empty()) { state x = fin.front(); if (Map[x.x][x.y] == m + 1) break; fin.pop(); memset(vis, 0, sizeof(vis)); queue<state> q; q.push(x); while (!q.empty()) { state xx = q.front(); q.pop(); if (Map[xx.x][xx.y] == Map[x.x][x.y] + 1) { fin.push(xx); continue; } state y; for (int i = 0; i < 4; ++i) { y.x = xx.x + dir[i][0]; y.y = xx.y + dir[i][1]; for (int i = 0; i < s_num; ++i) y.S[i] = xx.S[i]; if (y.x >= 1 && y.x <= n && y.y >= 1 && y.y <= n && !vis[y.x][y.y] && Map[y.x][y.y] != -1) { vis[y.x][y.y] = true; y.len = xx.len + 1; if (Map[y.x][y.y] >= 20 && !xx.S[ Map[y.x][y.y] - 20 ]) y.S[ Map[y.x][y.y] - 20 ] = 1; q.push(y); } } } } if (fin.empty()) { printf("impossible\n"); return; } int Min = INF; while (!fin.empty()) { state a = fin.front(); fin.pop(); int ans = 0; for (int i = 0; i < s_num - 20; ++i) { if (a.S[i]) ++ans; } Min = min(Min, a.len + ans); } printf("%d\n", Min); return; } int main() { while (~scanf("%d%d", &n, &m) && (n + m)) { s_num = 20; for (int i = 1; i <= n; ++i) { for (int j = 1; j <= n; ++j) { char c; scanf(" %c", &c); if (c <= '9' && c >= '1') Map[i][j] = c - '0'; if (c == '.') Map[i][j] = 11; if (c == '#') Map[i][j] = -1; if (c == 'S') Map[i][j] = s_num++; if (c == 'K') Map[i][j] = 0; if (c == 'T') Map[i][j] = m + 1; if (!Map[i][j]) { kx = i, ky = j; } else if (Map[i][j] == m + 1) { tx = i, ty = j; } } } bfs (); } return 0; }
相关推荐
**前端开源库-monk-middleware-wait-for-connection** 在前端开发中,数据库操作变得越来越常见,尤其是在构建复杂的Web应用程序时。Monk是一个轻量级的MongoDB ORM(对象关系映射)工具,专为Node.js设计,简化了...
"palace_MONK 1.2 奢华古典"主题包正是为这一需求所量身打造,它完美融合了古典与现代的元素,将人们对于中国古典美的向往转化为独具韵味的桌面体验。 这款主题包,以其精细的制作和典雅的设计,成为了Windows XP...
资源分类:Python库 所属语言:Python 资源全名:monk_tf-0.12.2-py2.py3-none-any.whl 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
《Python库monk_tf-0.2.11:深度学习框架的利器》 Python作为当今最流行的编程语言之一,其在数据科学、机器学习和深度学习领域扮演着至关重要的角色。众多强大的库使得Python成为了这些领域的首选工具,其中就包括...
Naked monk
GTM037.Mathematical.Logic,.Monk.(数理逻辑)(1)
《PyPI与Monk TensorFlow库详解》 PyPI(Python Package Index)是Python社区的官方软件包仓库,它为Python开发者提供了一个集中分享和下载开源软件包的平台。PyPI中的资源涵盖了各种Python库,从数据处理到机器...
[Arduino编程从零开始].[英].Simon.Monk.扫描版。本书揭示了arduino的软件特性,介绍了如何在Arduino上用C语言编写能稳定运行的Sketch。
"Python库 | monk_tf-0.5.10.tar.gz" 这个资源是一个针对Python开发者的工具包,特别关注于机器学习和深度学习领域。它以tar.gz格式压缩,通常这种格式用于在Linux和Unix-like系统中打包和压缩文件。资源的全名...
目前市场上有很多,做的都挺不错,但是他们都有一个共同点,那就是90%以上都是前端工程师开发的,导致我们引入这些UI的时候,很难和程序绑定Monk.UI是一款开源的表单美化插件!目前包涵基础所有表单和第三方插件。...
《PyPI官网下载 | monk_keras_cuda92-0.0.1.tar.gz:深入了解Python库的管理和使用》 PyPI(Python Package Index)是Python社区的重要资源库,它为Python开发者提供了一个集中发布和分享自己开发的软件包的平台。...
Arduino是一款便捷灵活、方便上手的开源电子原型平台。包含硬件(各种型号的Arduino板)和软件(Arduino IDE)。由一个欧洲开发团队于2005年冬季开发。Arduino能通过各种各样的传感器来感知环境,通过控制灯光、马达...
《Python库monk_keras_cuda102_test的探索与应用》 在现代人工智能领域,Python作为一门强大的编程语言,其丰富的库支持使得开发者能够快速构建和训练深度学习模型。"monk_keras_cuda102_test-0.0.1.tar.gz"是一个...
"Python库 | monk_pytorch_cuda90-0.0.1-py3-none-any.whl" 是一个针对PyTorch框架、CUDA 9.0版本优化的Python库,名为monk。这个库专为深度学习和人工智能应用设计,提供了一系列工具和模块,以简化机器学习项目的...
《树莓派烹饪手册:软件篇》第二版是专为树莓派爱好者和开发者准备的一本详尽指南,旨在帮助用户充分利用这小巧而强大的单板计算机。这本书由Steve Gibson撰写,深入浅出地介绍了如何利用树莓派进行各种软件相关的...
安装mongodb ...启动mongodb $ mongod ...mongo> use monk-app mongo> db.products.insert({name:apple juice, description:good}) WriteResult({ nInserted : 1 }) mongo> db.products.find().pretty()
《血潮》可能是Monk系列的第24本书,这个系列的主角是William Monk,一位警探,故事通常涉及解开错综复杂的谜团。 文件名中的“Mareas de sangre”直译为“血潮”,这暗示了书籍可能包含暴力和犯罪元素,这是Anne ...
《Python库monk_pytorch_cuda90_test1-0.0.1的深度解析》 在当今快速发展的信息技术领域,Python已经成为数据科学、人工智能(AI)和机器学习(ML)领域的首选编程语言。其中,PyTorch作为一款强大的深度学习框架,...
标题提到的"monk_obj_test2-0.0.11-py3-none-any.whl"就是一个这样的库,它专为Python 3设计,适用于任何架构。 首先,我们来了解`.whl`文件。这是一种Python的二进制包格式,由`pip`包管理器支持,用于替代传统的`...