HDU 5025 Saving 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.
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.
needed to save Tang Monk. If it's impossible for Sun Wukong to complete
the mission, print "impossible"(no quotes).
#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的更多相关文章
- hdu 5025 Saving Tang Monk 状态压缩dp+广搜
作者:jostree 转载请注明出处 http://www.cnblogs.com/jostree/p/4092939.html 题目链接:hdu 5025 Saving Tang Monk 状态压缩 ...
- 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 ...
- [ACM] HDU 5025 Saving Tang Monk (状态压缩,BFS)
Saving Tang Monk Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) ...
- hdu 5025 Saving Tang Monk(bfs+状态压缩)
Description <Journey to the West>(also <Monkey>) is one of the Four Great Classical Nove ...
- ACM学习历程—HDU 5025 Saving Tang Monk(广州赛区网赛)(bfs)
Problem Description <Journey to the West>(also <Monkey>) is one of the Four Great Classi ...
- 2014 网选 广州赛区 hdu 5025 Saving Tang Monk(bfs+四维数组记录状态)
/* 这是我做过的一道新类型的搜索题!从来没想过用四维数组记录状态! 以前做过的都是用二维的!自己的四维还是太狭隘了..... 题意:悟空救师傅 ! 在救师父之前要先把所有的钥匙找到! 每种钥匙有 k ...
- HDU 5025 Saving Tang Monk --BFS
题意:给一个地图,孙悟空(K)救唐僧(T),地图中'S'表示蛇,第一次到这要杀死蛇(蛇最多5条),多花费一分钟,'1'~'m'表示m个钥匙(m<=9),孙悟空要依次拿到这m个钥匙,然后才能去救唐 ...
- HDU 5025 Saving Tang Monk(状态转移, 广搜)
#include<bits/stdc++.h> using namespace std; ; ; char G[maxN][maxN], snake[maxN][maxN]; ]; int ...
- HDU 5025:Saving Tang Monk(BFS + 状压)
http://acm.hdu.edu.cn/showproblem.php?pid=5025 Saving Tang Monk Problem Description <Journey to ...
随机推荐
- robotframework使用中的一些注意事项
1.关于\的转义.使用\\ 2.关于字符串的合并 3.切换到iframe,切出iframe 4.对对象右键点击 5.对对象实现按键操作,在处理一些下拉对象时需要用到. 6.当元素定位十分困难的时候,需 ...
- Spring AOP无法拦截Controller中的方法
想使用AOP Annotation配置Spring MVC的Controller进行拦截, 发现无法拦截Controller的方法, 却可以拦截Service层的方法. 一开始: Spring的配置文 ...
- oracle 删除表空间TABLESPACE步骤及注意项
告诉大家,我喜欢通过toad for oralce来实现对oracle数据库的操作. 1.首先通过数据库管理员用户以SYSDBA身份登录.比如使用sys用户去登录 2.查看和记录待删除表空间所在的物理 ...
- Eclipse中快速打开文件所在的文件夹位置
本篇文章是紧接着Elicpse使用技巧-打开选中文件文件夹或者包的当前目录文章写的,本文主要是讲的利用eclipse插件的方式打开文件夹的位置, 由于eclipse版本的区别,所以插件也分成两种(实测 ...
- 海纳百川而来的一篇相当全面的Java NIO教程
目录 零.NIO包 一.Java NIO Channel通道 Channel的实现(Channel Implementations) Channel的基础示例(Basic Channel Exampl ...
- Raspberry Zero 上实现平滑视频图传
在某些应用场合我们可能需要通过一个设备通过WIFI将图像传到其它的机器进行显示或者图形分析,那怎么可以低成本地实现呢?其实很简单,我们只需要一块 Raspberry Zero W 和一个RPI 摄像头 ...
- github/gitlab同时管理多个ssh key
之前一直用github,但是github有一个不好的地方,要是创建私有的项目的话需要付费,而gitlab上则可以免费创建管理私有的项目.由于最近想把自己论文的一些东西整理一下,很多东西还是不方便公开, ...
- iOS开发 横向分页样式 可左右滑动或点击头部栏按钮进行页面切换
iOS开发 横向分页样式 可左右滑动或点击头部栏按钮进行页面切换 不多说直接上效果图和代码 1.设置RootViewController为一个导航试图控制器 // Copyright © 2016年 ...
- 有界算子p129
? 如果我把这里的1改成2,把1/(a-b) 换成1/2(a-b) 为什么不能是? 2. 这里的x是关于t的函数,为什么x属于 结果了?和x应该没有关系呀? 3. 那为什么T的范数不是一个固定值?为什 ...
- net平台下c#操作ElasticSearch详解
net平台下c#操作ElasticSearch详解 ElasticSearch系列学习 ElasticSearch第一步-环境配置 ElasticSearch第二步-CRUD之Sense Elasti ...