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 终于开始能够做状态压缩的题了,虽然这只是状态压缩里面一道很简单的题. 状态压缩就是用二进制的思想来表示状态 ...
随机推荐
- 快速samba配置
apt-get install samba smbpasswd -a user 如果需要写权限 [homes] read only = no
- python 序列化之pickle模块 json模块
一 pickle import pickle s='dd' print(pickle.dumps(s)) 输出: b'\x80\x03X\x02\x00\x00\x00ddq\x00.' pickle ...
- APUE 学习笔记(一) Unix基础知识
1. Unix 体系结构 内核的接口被称为系统调用 公用函数库构建在系统调用接口之上 应用软件既可以调用公用函数库,也可以直接进行系统调用 2. 文件和目录 目录操作函数:opendir--- ...
- 【NOIP2016练习】T1 挖金矿(二分答案)
题意: 思路:二分答案A 合法的答案 sigma(s[i][xi])/sigma(xi)>=a i<=m sigma(s[i][xi]-a*xi)>=0 对于每个i找到xi使s[i] ...
- struts中json机制与普通页面跳转机制混用(全局结果集配置返回json)
package继承json-default与struts-default 返回结果是add的话将addResult属性转换为json返回(addResult属性有getter,setter方法),返回 ...
- for循环创建对象
有时候奇怪的发现往list添加数据的时候,一直被最后一个元素覆盖,首先 ,我们得明白原理: 在new 一个对象的时候,对象的ID是唯一确定的:将对象add入list中时,放入list中的其实是对象的引 ...
- Jmeter骚操作—文件上传、下载
最近很多同学都在问jmeter上传.下载文件的脚本怎么做,要压测上传.下载文件的功能,脚本怎么做,网上查了都说的很含糊,这次呢,咱们就好好的把jmeter的上传下载文件好好缕缕,都整明白了,怎么个过程 ...
- HDU 1969 Pie【二分】
[分析] “虽然不是求什么最大的最小值(或者反过来)什么的……但还是可以用二分的,因为之前就做过一道小数型二分题(下面等会讲) 考虑二分面积,下界L=0,上界R=∑ni=1nπ∗ri2.对于一个中值x ...
- linux grep 查找文件内容
自试: wang@wang:~$ grep -i "*args*" ~/IGV01-SW/src/bzrobot_diagnostics/bzrobot_lightbelt_man ...
- 1.搭建maven,eclipse创建maven项目
1.下载maven包,下载地址为:http://maven.apache.org/download.cgi 2.解压zip包 3.eclipse 引入maven: window-Preferences ...