「hdu 4845 」拯救大兵瑞恩(状态压缩bfs | 分层图思想)

首先关于分层图思想详见2004的这个论文

https://wenku.baidu.com/view/dc57f205cc175527072208ad.html

这道题可以用状态压缩,我们对于每一把钥匙的状态只有两种,获得了或者没有获得,然后就可以用二进制方法表示,例如一共有5把钥匙,我们如果用二进制数01001表示当前状态,就意味着我们已经拥有了第一类钥匙,第四类钥匙(从右往左看),然后我们就可以把此时的状态压缩为一个int了,节省了很多的空间,具体的操作就用位运算实现。

然后就是简单粗暴的dfs过程。

不过有几个点需要注意

① 要加反边。

② 一个位置可能有多个钥匙,注意要用位与运算。

下面给出代码。

 1 #include <cstdio>
 2 #include <cstdlib>
 3 #include <queue>
 4 #include <cstring>
 5 using namespace std;
 6 const int N = 20;
 7
 8 struct Node{
 9     int x, y, step, state;
10 };
11 int n, m, p, t, tt, map[N][N][N][N], key[N][N], vis[N][N][1 << 11];
12 int py[4][2] = {{0, 1}, {0, -1}, {-1, 0}, {1, 0}};
13
14 inline int bfs(){
15     queue < Node > q;
16     q.push((Node){1, 1, 0, key[1][1]});
17     while(!q.empty()){
18         Node u = q.front(); q.pop();
19         if (u.x == n && u.y == m)    return u.step;
20         for (int i = 0; i < 4; i++){
21             int x = u.x + py[i][0];
22             int y = u.y + py[i][1];
23             if (x > 0 && x <= n && y > 0 && y <= m)
24                if (!map[u.x][u.y][x][y]) continue;
25                else if((map[u.x][u.y][x][y] == -1) || (1 << (map[u.x][u.y][x][y] - 1)) & u.state){
26                     int states = u.state | key[x][y];
27                     if (!vis[x][y][states]){
28                         q.push((Node){x, y, u.step + 1, states});
29                         vis[x][y][states] = 1;
30                     }
31                }
32         }
33     }
34     return -1;
35 }
36
37
38
39 int main(){
40     scanf("%d %d %d",&n, &m, &p);
41     scanf("%d", &t);
42     memset(map, -1, sizeof(map));
43     for (int i = 0; i < t; i++){
44         int a, b, c, d, e;
45         scanf("%d %d %d %d %d", &a, &b, &c, &d, &e);
46         map[a][b][c][d] = map[c][d][a][b] = e;
47     }
48     scanf("%d", &tt);
49     for (int i = 0; i < tt; i++){
50         int a, b, c;
51         scanf("%d %d %d", &a, &b, &c);
52         key[a][b] |= (1 << (c - 1));
53     }
54     printf("%d", bfs());
55     return 0;
56 }
57
58
59 /**************************************************************
60     Problem: 1784
61     User: cminus
62     Language: C++
63     Result: Accepted
64     Time:0 ms
65     Memory:4896 kb
66 ****************************************************************/
时间: 2024-11-10 16:25:49

「hdu 4845 」拯救大兵瑞恩(状态压缩bfs | 分层图思想)的相关文章

hdu 3681 Prison Break (状态压缩+bfs+最短路)

Prison Break Time Limit: 5000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3214    Accepted Submission(s): 829 Problem Description Rompire is a robot kingdom and a lot of robots live there peacefully. But on

hdu 4771 Stealing Harry Potter&#39;s Precious (状态压缩+bfs)

Stealing Harry Potter's Precious Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1297    Accepted Submission(s): 619 Problem Description Harry Potter has some precious. For example, his invisib

hdu5094 状态压缩+bfs

http://acm.hdu.edu.cn/showproblem.php?pid=5094 Problem Description This story happened on the background of Star Trek. Spock, the deputy captain of Starship Enterprise, fell into Klingon's trick and was held as prisoner on their mother planet Qo'noS.

胜利大逃亡(续)(状态压缩bfs)

胜利大逃亡(续) Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7357    Accepted Submission(s): 2552 Problem Description Ignatius再次被魔王抓走了(搞不懂他咋这么讨魔王喜欢)……这次魔王汲取了上次的教训,把Ignatius关在一个n*m的地牢里,并在地牢的某些地方安装了带

2014 Super Training #6 G Trim the Nails --状态压缩+BFS

原题: ZOJ 3675 http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3675 由m<=20可知,可用一个二进制数表示指甲的状态,最多2^20,初始状态为0,表示指甲都没剪,然后BFS找解,每次枚举剪刀的两个方向,枚举移动的位数进行扩展状态即可. 代码: #include <iostream> #include <cstdio> #include <cstring> #include &

hdu1429胜利大逃亡(续) (状态压缩+BFS)

Problem Description Ignatius再次被魔王抓走了(搞不懂他咋这么讨魔王喜欢)-- 这次魔王汲取了上次的教训,把Ignatius关在一个n*m的地牢里,并在地牢的某些地方安装了带锁的门,钥匙藏在地牢另外的某些地方.刚开始Ignatius被关在(sx,sy)的位置,离开地牢的门在(ex,ey)的位置.Ignatius每分钟只能从一个坐标走到相邻四个坐标中的其中一个.魔王每t分钟回地牢视察一次,若发现Ignatius不在原位置便把他拎回去.经过若干次的尝试,Ignatius已画

hdu1885Key Task(状态压缩+bfs)

题目链接: 啊哈哈,点我点我 这题和hdu1429是姊妹题  请参见传送门 题目: Key Task Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1187    Accepted Submission(s): 470 Problem Description The Czech Technical University is rath

hdu1429胜利大逃亡(续)(状态压缩+bfs)

题目链接: 啊哈哈,点我点我 题意及思路 最开始我以为跟普通的bfs一样,所以直接写了一个朴素的bfs,一跑,前两组数据对了,但是第三组不对,一看,走过的还可以走啊,所以不能标记,结果我的bfs乱改,最后 毫无疑问改成了死循环.所以看题解... 思路:因为有10中不同的钥匙,每种都有两种状态,所以结合计算机是二进制保存的特点,刚好把这10把钥匙当成每一个为,要要1<<10个位保存所有的状态,然后就是模拟捡起钥匙,捡起钥匙就是说明这个位上的数字变成1这个状态,所以自然而然想到了位运算,只要|一下

[HDU]5094Maze(状态压缩BFS)

状态压缩的题,第一次WA了,怎么改都不对,交了十几遍,之后重新写了一个,1A了 #include<cstdio> #include<queue> #include<cstring> #include<algorithm> using namespace std; const int maxn = 51; const int dir[4][2] = {{0,1},{-1,0},{0,-1},{1,0}}; int n,m,t; int door[maxn][m