【HDOJ】1885 Key Task

状态压缩+BFS,一次AC。

  1 /* 1885 */
  2 #include <iostream>
  3 #include <queue>
  4 #include <cstring>
  5 #include <cstdio>
  6 #include <cstdlib>
  7 using namespace std;
  8
  9 #define MAXN 105
 10
 11 bool visit[MAXN][MAXN][16];
 12
 13 typedef struct node_t {
 14     int x, y, t, k;
 15     node_t() {}
 16     node_t(int xx, int yy, int tt, int kk) {
 17         x = xx; y = yy; t = tt; k = kk;
 18     }
 19 } node_t;
 20
 21 int n, m;
 22 node_t beg;
 23 char map[MAXN][MAXN];
 24 int dir[4][2] = {
 25     -1,0,1,0,0,-1,0,1
 26 };
 27
 28 inline bool check(int x, int y) {
 29     return x<0 || x>=n || y<0 || y>=m;
 30 }
 31
 32 int bfs() {
 33     int i, j, k;
 34     int x, y, t;
 35     node_t nd;
 36     queue<node_t> Q;
 37
 38     memset(visit, false, sizeof(visit));
 39     visit[beg.x][beg.y][beg.k] = true;
 40     Q.push(beg);
 41
 42     while (!Q.empty()) {
 43         nd = Q.front();
 44         Q.pop();
 45         t = nd.t + 1;
 46         for (i=0; i<4; ++i) {
 47             x = nd.x + dir[i][0];
 48             y = nd.y + dir[i][1];
 49             if (check(x, y) || map[x][y]==‘#‘)
 50                 continue;
 51             if (map[x][y] == ‘X‘)
 52                 return t;
 53             k = nd.k;
 54             if (map[x][y]>=‘A‘ && map[x][y]<=‘D‘) {
 55                 j = map[x][y] - ‘A‘;
 56                 if ((nd.k & (1<<j)) == 0)
 57                     continue;
 58             } else if (map[x][y]>=‘a‘ && map[x][y]<=‘d‘) {
 59                 j = map[x][y] - ‘a‘;
 60                 k |= (1<<j);
 61             }
 62             if (visit[x][y][k])
 63                 continue;
 64             visit[x][y][k] = true;
 65             Q.push(node_t(x, y, t, k));
 66         }
 67     }
 68
 69     return -1;
 70 }
 71
 72 int main() {
 73     int i, j, k;
 74
 75     #ifndef ONLINE_JUDGE
 76         freopen("data.in", "r", stdin);
 77         freopen("data.out", "w", stdout);
 78     #endif
 79
 80     beg.k = beg.t = 0;
 81     while (scanf("%d%d",&n,&m)!=EOF && (n||m)) {
 82         for (i=0; i<n; ++i) {
 83             scanf("%s", map[i]);
 84             for (j=0; j<m; ++j) {
 85                 if (map[i][j] == ‘*‘) {
 86                     beg.x = i;
 87                     beg.y = j;
 88                 } else if (map[i][j] == ‘Y‘) {
 89                     map[i][j] = ‘A‘;
 90                 } else if (map[i][j] == ‘R‘) {
 91                     map[i][j] = ‘C‘;
 92                 } else if (map[i][j] == ‘G‘) {
 93                     map[i][j] = ‘D‘;
 94                 } else if (map[i][j] == ‘y‘) {
 95                     map[i][j] = ‘a‘;
 96                 } else if (map[i][j] == ‘r‘) {
 97                     map[i][j] = ‘c‘;
 98                 } else if (map[i][j] == ‘g‘) {
 99                     map[i][j] = ‘d‘;
100                 }
101             }
102         }
103         k = bfs();
104         if (k < 0)
105             puts("The poor student is trapped!");
106         else
107             printf("Escape possible in %d steps.\n", k);
108     }
109
110     return 0;
111 }
时间: 2024-10-10 11:29:10

【HDOJ】1885 Key Task的相关文章

hdoj 1885 Key Task 【BFS+状态压缩】

题目:hdoj 1885 Key Task 题意:给出一些点,然后有一些钥匙和门,钥匙拿到才可以打开门,问到出口的最短时间. 分析:很明显的广搜 + 状态压缩题目. 坑点: 1:题目没读清楚,以为要把所有的们打开才能出去. AC代码: #include <iostream> #include <stdio.h> #include <string.h> #include <algorithm> #include <queue> #include &

hdu 1885 Key Task (三维bfs)

题目 之前比赛的一个题, 当时是崔老师做的,今天我自己做了一下.... 还要注意用bfs的时候  有时候并不是最先到达的就是答案,比如HDU 3442 这道题是要求最小的消耗血量伤害,但是并不是最先到达目标点的路径 就是最小的伤害,因为每一个点的伤害是 不一样的, 这种情况要用优先队列优化, 对伤害优化. 题意:*开始, X出口, b, y, r, g 代表钥匙,分别可以开B, Y, R, G颜色的门, 钥匙可以多次使用.问最短的步骤. 思路:vis[][][]数组开三维,第三维记录状态 是否拿

【HDOJ】4956 Poor Hanamichi

基本数学题一道,看错位数,当成大数减做了,而且还把方向看反了.所求为最接近l的值. 1 #include <cstdio> 2 3 int f(__int64 x) { 4 int i, sum; 5 6 i = sum = 0; 7 while (x) { 8 if (i & 1) 9 sum -= x%10; 10 else 11 sum += x%10; 12 ++i; 13 x/=10; 14 } 15 return sum; 16 } 17 18 int main() { 1

【HDOJ】1099 Lottery

题意超难懂,实则一道概率论的题目.求P(n).P(n) = n*(1+1/2+1/3+1/4+...+1/n).结果如果可以除尽则表示为整数,否则表示为假分数. 1 #include <cstdio> 2 #include <cstring> 3 4 #define MAXN 25 5 6 __int64 buf[MAXN]; 7 8 __int64 gcd(__int64 a, __int64 b) { 9 if (b == 0) return a; 10 else return

【HDOJ】2844 Coins

完全背包. 1 #include <stdio.h> 2 #include <string.h> 3 4 int a[105], c[105]; 5 int n, m; 6 int dp[100005]; 7 8 int mymax(int a, int b) { 9 return a>b ? a:b; 10 } 11 12 void CompletePack(int c) { 13 int i; 14 15 for (i=c; i<=m; ++i) 16 dp[i]

【HDOJ】3509 Buge&#39;s Fibonacci Number Problem

快速矩阵幂,系数矩阵由多个二项分布组成.第1列是(0,(a+b)^k)第2列是(0,(a+b)^(k-1),0)第3列是(0,(a+b)^(k-2),0,0)以此类推. 1 /* 3509 */ 2 #include <iostream> 3 #include <string> 4 #include <map> 5 #include <queue> 6 #include <set> 7 #include <stack> 8 #incl

【HDOJ】1818 It&#39;s not a Bug, It&#39;s a Feature!

状态压缩+优先级bfs. 1 /* 1818 */ 2 #include <iostream> 3 #include <queue> 4 #include <cstdio> 5 #include <cstring> 6 #include <cstdlib> 7 #include <algorithm> 8 using namespace std; 9 10 #define MAXM 105 11 12 typedef struct {

【HDOJ】2424 Gary&#39;s Calculator

大数乘法加法,直接java A了. 1 import java.util.Scanner; 2 import java.math.BigInteger; 3 4 public class Main { 5 public static void main(String[] args) { 6 Scanner cin = new Scanner(System.in); 7 int n; 8 int i, j, k, tmp; 9 int top; 10 boolean flag; 11 int t

【HDOJ】2425 Hiking Trip

优先级队列+BFS. 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <queue> 5 using namespace std; 6 7 #define MAXN 25 8 9 typedef struct node_st { 10 int x, y, t; 11 node_st() {} 12 node_st(int xx, int yy, int tt)