Stealing Harry Potter's Precious
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1285 Accepted Submission(s): 609
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
题意:要求用最少的步数到达所有指定的点,无法全部到达输出-1.。
直接暴力dfs T掉了。。。所以加了个bfs缩图,bfs从起点出发,把能到达的指定的点的步数记录下来,然后对每个指定的点也是如此(进行bfs),然后再对缩过的图进行bfs,缩过的图加上起点最多5个点。。所以效率快了很多。
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<queue>
using namespace std;
const int dir[4][2]={1,0,-1,0,0,1,0,-1};
char mp[110][110];
int vis[110][110],step[110][110];
struct Node
{
int x,y;
}p[5];
int ans,k,n,m;
int dis[5][5];
void bfs(int x,int y,int num)
{
memset(vis,0,sizeof(vis));
memset(step,0,sizeof(step));
queue<int> q;
vis[x][y]=1;
q.push(x*m+y);
while(!q.empty())
{
int temp=q.front();
q.pop();
int x1=temp/m;
int y1=temp%m;
for(int i=0;i<4;i++)
{
int nx=x1+dir[i][0];
int ny=y1+dir[i][1];
if(nx<0||nx>=n||ny<0||ny>=m)
continue;
if(mp[nx][ny]=='#')
continue;
if(vis[nx][ny])
continue;
step[nx][ny]=step[x1][y1]+1;
vis[nx][ny]=1;
if(mp[nx][ny]=='@')
dis[num][0]=step[nx][ny];
for(int j=1;j<=k;j++)
if(nx==p[j].x&&ny==p[j].y)
dis[num][j]=step[nx][ny];
q.push(nx*m+ny);
}
}
}
int vis1[110];
void dfs(int u,int cur,int temp)
{
if(vis1[u])
return;
if(ans<cur)
return;
if(temp==k)
{
if(cur<ans)
ans=cur;
return;
}
for(int i=0;i<=4;i++)
{
if(!dis[u][i])
continue;
vis1[u]=1;
dfs(i,cur+dis[u][i],temp+1);
vis1[u]=0;
}
}
int main()
{
int i,j;
while(scanf("%d%d",&n,&m)==2)
{
if(n==0&&m==0)
break;
for(i=0;i<n;i++)
scanf("%s",mp[i]);
scanf("%d",&k);
for(i=1;i<=k;i++)
{
scanf("%d%d",&p[i].x,&p[i].y);
p[i].x--;
p[i].y--;
}
ans=1<<30;
memset(dis,0,sizeof(dis));
for(i=0;i<n;i++)
{
for(j=0;j<m;j++)
{
if(mp[i][j]=='@')
bfs(i,j,0);
else
{
for(int q=1;q<=k;q++)
{
if(i==p[q].x&&j==p[q].y)
bfs(i,j,q);
}
}
}
}
memset(vis1,0,sizeof(vis1));
dfs(0,0,0);
if(ans==(1<<30))
printf("-1\n");
else
printf("%d\n",ans);
}
return 0;
}