HDU 4771 Stealing Harry Potter's Precious (2013杭州赛区1002题,bfs,状态压缩)

Stealing Harry Potter’s Precious

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 126    Accepted Submission(s): 63

Problem Description   Harry Potter has some precious. For example, his invisible robe, his wand and his owl. When Hogwarts school is in holiday, Harry Potter has to go back to uncle Vernon’s home. But he can’t bring his precious with him. As you know, uncle Vernon never allows such magic things in his house. So Harry has to deposit his precious in the Gringotts Wizarding Bank which is owned by some goblins. The bank can be considered as a N × M grid consisting of N × M rooms. Each room has a coordinate. The coordinates of the upper-left room is (1,1) , the down-right room is (N,M) and the room below the upper-left room is (2,1)….. A 3×4 bank grid is shown below:

  Some rooms are indestructible and some rooms are vulnerable. Goblins always care more about their own safety than their customers’ properties, so they live in the indestructible rooms and put customers’ properties in vulnerable rooms. Harry Potter’s precious are also put in some vulnerable rooms. Dudely wants to steal Harry’s things this holiday. He gets the most advanced drilling machine from his father, uncle Vernon, and drills into the bank. But he can only pass though the vulnerable rooms. He can’t access the indestructible rooms. He starts from a certain vulnerable room, and then moves in four directions: north, east, south and west. Dudely knows where Harry’s precious are. He wants to collect all Harry’s precious by as less steps as possible. Moving from one room to another adjacent room is called a ‘step’. Dudely doesn’t want to get out of the bank before he collects all Harry’s things. Dudely is stupid.He pay you $1,000,000 to figure out at least how many steps he must take to get all Harry’s precious.  

 

Input   There are several test cases.

  In each test cases:

  The first line are two integers N and M, meaning that the bank is a N × M grid(0<N,M <= 100).

  Then a N×M matrix follows. Each element is a letter standing for a room. ‘#’ means a indestructible room, ‘.’ means a vulnerable room, and the only ‘@’ means the vulnerable room from which Dudely starts to move.

  The next line is an integer K ( 0 < K <= 4), indicating there are K Harry Potter’s precious in the bank.

  In next K lines, each line describes the position of a Harry Potter’s precious by two integers X and Y, meaning that there is a precious in room (X,Y).

  The input ends with N = 0 and M = 0  

 

Output   For each test case, print the minimum number of steps Dudely must take. If Dudely can’t get all Harry’s things, print -1.  

 

Sample Input 2 3 ##@ #.# 1 2 2 4 4 #@## …. #### …. 2 2 1 2 4 0 0  

 

Sample Output -1 5  

 

Source
2013 Asia Hangzhou Regional Contest

 

 

 

bfs就可以了。

 

  1 /* ***********************************************
  2 Author        :kuangbin
  3 Created Time  :2013-11-9 13:26:38
  4 File Name     :E:\2013ACM\专题强化训练\区域赛\2013杭州\1002.cpp
  5 ************************************************ */
  6 
  7 #include <stdio.h>
  8 #include <string.h>
  9 #include <iostream>
 10 #include <algorithm>
 11 #include <vector>
 12 #include <queue>
 13 #include <set>
 14 #include <map>
 15 #include <string>
 16 #include <math.h>
 17 #include <stdlib.h>
 18 #include <time.h>
 19 using namespace std;
 20 
 21 int n,m;
 22 char g[110][110];
 23 int a[110][110];
 24 
 25 int sx,sy;
 26 int k;
 27 
 28 int dp[110][110][32];
 29 int px[10],py[10];
 30 
 31 struct Node
 32 {
 33     int x,y;
 34     int s;
 35     Node(int _x = 0,int _y = 0,int _s = 0)
 36     {
 37         x = _x;
 38         y = _y;
 39         s = _s;
 40     }
 41 };
 42 int move[][2] = {{0,1},{0,-1},{1,0},{-1,0}};
 43 int bfs()
 44 {
 45     queue<Node>q;
 46     int s = 0;
 47     for(int i = 0;i < k;i++)
 48         if(sx == px[i] && sy == py[i])
 49             s = s|(1<<i);
 50     q.push(Node(sx,sy,s));
 51     memset(dp,-1,sizeof(dp));
 52     dp[sx][sy][s] = 0;
 53     while(!q.empty())
 54     {
 55         Node tmp = q.front();
 56         q.pop();
 57         if(tmp.s == ((1<<k) - 1))
 58         {
 59             return dp[tmp.x][tmp.y][tmp.s];
 60         }
 61         for(int i = 0;i < 4;i++)
 62         {
 63             int nx = tmp.x + move[i][0];
 64             int ny = tmp.y + move[i][1];
 65             int s = tmp.s;
 66             if(nx < 0 || nx >= n || ny < 0 || ny >= m)continue;
 67             if(a[nx][ny] == -2)continue;
 68             for(int j = 0;j < k;j++)
 69                 if(nx == px[j] && ny == py[j])
 70                 {
 71                     s |= (1<<j);
 72                 }
 73             if(dp[nx][ny][s] != -1)continue;
 74             dp[nx][ny][s] = dp[tmp.x][tmp.y][tmp.s] + 1;
 75             q.push(Node(nx,ny,s));
 76         }
 77     }
 78 
 79     return -1;
 80 }
 81 
 82 int main()
 83 {
 84     //freopen("in.txt","r",stdin);
 85     //freopen("out.txt","w",stdout);
 86     while(scanf("%d%d",&n,&m) == 2)
 87     {
 88         if(n == 0 && m == 0)break;
 89         for(int i = 0;i < n;i++)
 90             scanf("%s",g[i]);
 91         memset(a,-1,sizeof(a));
 92         for(int i = 0;i < n;i++)
 93             for(int j = 0;j < m;j++)
 94             {
 95                 if(g[i][j] == '@')
 96                 {
 97                     sx = i;
 98                     sy = j;
 99                 }
100                 if(g[i][j] == '#')
101                     a[i][j] = -2;
102             }
103         scanf("%d",&k);
104         int x,y;
105         for(int i = 0;i < k;i++)
106         {
107             scanf("%d%d",&x,&y);
108             x --;
109             y--;
110             px[i] = x;
111             py[i] = y;
112         }
113         printf("%d\n",bfs());
114     }
115     
116     return 0;
117 }

 

 

 

 

 

    原文作者:算法小白
    原文地址: https://www.cnblogs.com/kuangbin/p/3416166.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞