hdoj 5094 Maze 【BFS + 状态压缩】 【好多坑】
Maze
Spock, the deputy captain of Starship Enterprise, fell into Klingon’s trick and was held as prisoner on their mother planet Qo’noS.
The captain of Enterprise, James T. Kirk, had to fly to Qo’noS to rescue his deputy. Fortunately, he stole a map of the maze where Spock was put in exactly.
The maze is a rectangle, which has n rows vertically and m columns horizontally, in another words, that it is divided into n*m locations. An ordered pair (Row No., Column No.) represents a location in the maze. Kirk moves from current location to next costs
1 second. And he is able to move to next location if and only if:
Next location is adjacent to current Kirk’s location on up or down or left or right(4 directions)
Open door is passable, but locked door is not.
Kirk cannot pass a wall
There are p types of doors which are locked by default. A key is only capable of opening the same type of doors. Kirk has to get the key before opening corresponding doors, which wastes little time.
Initial location of Kirk was (1, 1) while Spock was on location of (n, m). Your task is to help Kirk find Spock as soon as possible.
Each test case consists of several lines. Three integers are in the first line, which represent n, m and p respectively (1<= n, m <=50, 0<= p <=10).
Only one integer k is listed in the second line, means the sum number of gates and walls, (0<= k <=500).
There are 5 integers in the following k lines, represents xi1, yi1, xi2, yi2, gi; when gi >=1, represents there is a gate of type gi between location (xi1, yi1) and (xi2,
yi2); when gi = 0, represents there is a wall between location (xi1, yi1) and (xi2, yi2), ( | xi1 - xi2 | + | yi1 - yi2 |=1, 0<= gi <=p
)
Following line is an integer S, represent the total number of keys in maze. (0<= S <=50).
There are three integers in the following S lines, represents xi1, yi1 and qi respectively. That means the key type of qi locates on location (xi1, yi1), (1<= qi<=p).
If there is no possible plan, output -1.
4 4 9
9
1 2 1 3 2
1 2 2 2 0
2 1 2 2 0
2 1 3 1 0
2 3 3 3 0
2 4 3 4 1
3 2 3 3 0
3 3 4 3 0
4 3 4 4 0
2
2 1 2
4 2 1
14
WA了两次。
。。
注意状态压缩处理二进制时,对门和钥匙的编号要减一处理(不要问我为什么)。
#include <cstdio>
#include <cstring>
#include <queue>
#include <algorithm>
#define MAXN 51
using namespace std;
struct Node
{
int x, y, step, key;
friend bool operator < (Node a, Node b)
{
return a.step > b.step;
}
};
int Map[MAXN][MAXN];
int pos[MAXN][MAXN][10];//存储该位置拥有的 钥匙种类
bool vis[MAXN][MAXN][1<<10];//最多10个门
int rec[MAXN][MAXN][MAXN][MAXN];// -2表示两点间有墙 大于或等于0表示两点间有门 -1表示什么都没有
int N, M, p, k;
void getMap()
{
int x, y, x1, y1, x2, y2, op;
memset(Map, 0, sizeof(Map));//0表示该位置什么都没有
memset(rec, -1, sizeof(rec));//-1表示两个位置之间 什么都没有
scanf("%d", &k);
for(int i = 1; i <= k; i++)//k个地方有门 或者 有墙
{
scanf("%d%d%d%d%d", &x1, &y1, &x2, &y2, &op);
if(op == 0)//墙
rec[x1][y1][x2][y2] = rec[x2][y2][x1][y1] = -2;
else//门
rec[x1][y1][x2][y2] = rec[x2][y2][x1][y1] = op-1;
}
memset(pos, 0, sizeof(pos));
int S;//钥匙数目
scanf("%d", &S);
while(S--)
{
scanf("%d%d%d", &x, &y, &op);
Map[x][y] = 1;
if(!pos[x][y][op-1])//该钥匙 还没有
pos[x][y][op-1] = 1;
}
}
bool judge(Node a)//是否越界
{
return a.x >= 1 && a.x <= N && a.y >= 1 && a.y <= M;
}
int wall_or_door(Node a, Node b)//推断两个点间是否有 墙 或有门 或什么都没有
{
return rec[a.x][a.y][b.x][b.y];
}
void BFS(int x, int y)
{
priority_queue<Node> Q;
int move[4][2] = {0,1, 0,-1, 1,0, -1,0};
memset(vis, false, sizeof(vis));
Node now, next;
now.x = x, now.y = y, now.step = 0, now.key = 0;
if(Map[now.x][now.y])//起点可能有钥匙 这里是个坑
{
for(int i = 0; i < 10; i++)
{
if(pos[now.x][now.y][i])
now.key |= (1 << i);
}
}
Q.push(now);
vis[now.x][now.y][now.key] = true;
while(!Q.empty())
{
now = Q.top();
Q.pop();
if(now.x == N && now.y == M)//到达终点
{
printf("%d\n", now.step);
return ;
}
for(int k = 0; k < 4; k++)
{
next.x = now.x + move[k][0];
next.y = now.y + move[k][1];
next.step = now.step + 1;
int t = wall_or_door(now, next);
if(judge(next) && t != -2)//不能越界且中间不能有墙
{
//分有门 和 没有门 来讨论
if(t >= 0)//有门
{
next.key = now.key;
//先看是否有钥匙 要保证能到达目标位置
if(next.key & (1 << t))//有钥匙
{
//推断目标位置是否有钥匙
if(Map[next.x][next.y])//有钥匙 收集钥匙
{
for(int i = 0; i < 10; i++)
{
if(pos[next.x][next.y][i])
next.key |= (1 << i);
}
}
if(!vis[next.x][next.y][next.key])//推断该状态 是否出现过
{
vis[next.x][next.y][next.key] = true;
Q.push(next);
}
}
//没有钥匙这条路眼下不能走
}
else//没有门
{
next.key = now.key;
if(Map[next.x][next.y])//目标位置有钥匙
{
for(int i = 0; i < 10; i++)
{
if(pos[next.x][next.y][i])
next.key |= (1 << i);
}
}
if(!vis[next.x][next.y][next.key])
{
vis[next.x][next.y][next.key] = true;
Q.push(next);
}
}
}
}
}
printf("-1\n");
}
int main()
{
while(scanf("%d%d%d", &N, &M, &p) != EOF)
{
getMap();
BFS(1, 1);
}
return 0;
}
hdoj 5094 Maze 【BFS + 状态压缩】 【好多坑】的更多相关文章
- ACM/ICPC 之 BFS+状态压缩(POJ1324(ZOJ1361))
求一条蛇到(1,1)的最短路长,题目不简单,状态较多,需要考虑状态压缩,ZOJ的数据似乎比POj弱一些 POJ1324(ZOJ1361)-Holedox Moving 题意:一条已知初始状态的蛇,求其 ...
- HDU1429+bfs+状态压缩
bfs+状态压缩思路:用2进制表示每个钥匙是否已经被找到.. /* bfs+状态压缩 思路:用2进制表示每个钥匙是否已经被找到. */ #include<algorithm> #inclu ...
- BFS+状态压缩 hdu-1885-Key Task
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1885 题目意思: 给一个矩阵,给一个起点多个终点,有些点有墙不能通过,有些点的位置有门,需要拿到相应 ...
- poj 1753 Flip Game(bfs状态压缩 或 dfs枚举)
Description Flip game squares. One side of each piece is white and the other one is black and each p ...
- BFS+状态压缩 HDU1429
胜利大逃亡(续) Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total S ...
- HDU 3247 Resource Archiver (AC自己主动机 + BFS + 状态压缩DP)
题目链接:Resource Archiver 解析:n个正常的串.m个病毒串,问包括全部正常串(可重叠)且不包括不论什么病毒串的字符串的最小长度为多少. AC自己主动机 + bfs + 状态压缩DP ...
- hdoj 1429 胜利大逃亡(续) 【BFS+状态压缩】
题目:pid=1429">hdoj 1429 胜利大逃亡(续) 同样题目: 题意:中文的,自己看 分析:题目是求最少的逃亡时间.确定用BFS 这个题目的难点在于有几个锁对于几把钥匙.唯 ...
- HDOJ 1429 胜利大逃亡(续) (bfs+状态压缩)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1429 思路分析:题目要求找出最短的逃亡路径,但是与一般的问题不同,该问题增加了门与钥匙约束条件: 考虑 ...
- hdu - 1429 胜利大逃亡(续) (bfs状态压缩)
http://acm.hdu.edu.cn/showproblem.php?pid=1429 终于开始能够做状态压缩的题了,虽然这只是状态压缩里面一道很简单的题. 状态压缩就是用二进制的思想来表示状态 ...
随机推荐
- kb-07线段树-12--二分查找区间边界
/* hdu4614 本题刚开始想能不能记录该区间最前面开始的点,最后面的点,区间空的数量:但是病不行 然后线段树的本质是区间操作,所以!这题主要就是区间的空的全放满,只要定出区间的边界就好办了: 这 ...
- vue-cli3 vue.config.js配置
module.exports = { // 基本路径 baseUrl: '', // 输出文件目录 outputDir: 'dist', // eslint-loader 是否在保存的时候检查 lin ...
- node总结--回调函数阻塞和非阻塞代码实例
阻塞代码实例: var fs = require("fs"); var data = fs.readFileSync('input.txt'); console.log(data. ...
- 《Programming in C》读书笔记
该书由美国Seephen G.Kochan著 贾洪峰译,电子工业出版社,来源是九江学院图书馆采购,现在藏于九江学院图书馆逸夫楼. 本书的主要内容: 第一章.基础知识 第二章.编译和运行第一个程序 第三 ...
- ListView+EditText使用遇到的坑
最近项目中某功能需要ListView嵌套EditText来实现,使用过程中遇到一些问题: 1.点击弹出编辑框,edittext会失去焦点. 解决焦点丢失的问题 解决思路:软键盘弹出的时候会重新绘制界面 ...
- js-百度地图多个标注点
以成都华誉口腔3个门诊部为例,锦江区-青羊区-高新区 html: <div class = "demo_main"> <fieldset class = &quo ...
- jQuery移动端手机键盘输入车牌号代码【附加新能源车牌】
最近在移动应用中要做到一个录取汽车牌号码的功能,在网上找了一个插件后发现没有增加新能源车牌功能, 和同事研究了一下,将其进行改造完美的实现了这个功能,这里放出该插件的源码: 原插件来自A5源码网[ht ...
- 分享Kali Linux 2017年第11周镜像文件
分享Kali Linux 2017年第11周镜像文件 Kali?Linux官方于3月12日发布2017年的第11周镜像.这次维持了11个镜像文件的规模.默认的Gnome桌面的4个镜像,E17.KDE ...
- House Robber(动态规划)
思路: 代码: class Solution { public: int rob(vector<int> &num) { ; int size=num.size(); ) ]; v ...
- Akka简介与Actor模型
Akka是一个构建在JVM上,基于Actor模型的的并发框架,为构建伸缩性强,有弹性的响应式并发应用提高更好的平台.本文主要是个人对Akka的学习和应用中的一些理解. Actor模型 Akka的核心就 ...