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 终于开始能够做状态压缩的题了,虽然这只是状态压缩里面一道很简单的题. 状态压缩就是用二进制的思想来表示状态 ...
随机推荐
- 【Luogu】P3761城市(dfs)
题目链接 emmm我思维好水…… 想了一会lct发现好像不对,然后开始转DP稍微有一点思路,然后看了题解…… 首先可以枚举边,然后原树被你拆成了两个子树. 设D1D2是两个子树的直径,W1W2是子树内 ...
- [luoguP1640] [SCOI2010]连续攻击游戏(二分图最大匹配)
传送门 我们将每一个属性和物品连边,然后枚举从小到大属性跑匈牙利,直到找不到连边 #include <cstdio> #include <cstring> #include & ...
- java面试题之为什么hashmap的数组初始化大小都是2的N次方?
当数组长度为2的N次方时,不同的key算出的index相同的几率小,数据在数组上分配均匀,hash碰撞的几率小,提升查询效率,从大O(N)提升至O(1):
- 数据库操作——pymysql模块
一 import pymysql conn=pymysql.connect( host='localhost', port=3306, user='zuo', password=', database ...
- Linux System Programming 学习笔记(六) 进程调度
1. 进程调度 the process scheduler is the component of a kernel that selects which process to run next. 进 ...
- Windows server 2008 R2 + IIS7.5,ASP网站设置
Windows server 2008 R2 + IIS7.5,ASP网站设置 1. 让IIS7支持ASP Win2008 IIS7 默认不安装ASP,如果需要ASP 的支持,需要将这个角色服务选上. ...
- #define xxx do{...} while(0) 宏定义
linux内核和其他一些开源的代码中,经常会遇到这样的代码: do{ ... }while(0) 这样的代码一看就不是一个循环,do..while表面上在这里一点意义都没有,那么为什么要这么用呢? 实 ...
- pstack
pstree linux 查看进程树 和 包含的线程 pstack 显示每个进程的栈跟踪
- Babel6.x的安装过程
1.首先安装babel-cli(用于在终端使用babel) npm install -g babel-cli 2.然后安装babel-preset-es2015插件 npm install --sav ...
- 常用函数和STL
#include <bits/stdc++.h> using namespace std; #define PI acos(-1.0) int main() { printf(" ...