hdu5025Saving Tang Monk【广搜】

来源:互联网 发布:miyavi知乎 编辑:程序博客网 时间:2024/04/30 04:14

Description

《Journey to the West》(also 《Monkey》) is one of the Four Great Classical Novels of Chinese literature. It was written by Wu Cheng'en during the Ming Dynasty. In this novel, Monkey King Sun Wukong, pig Zhu Bajie and Sha Wujing, escorted Tang Monk to India to get sacred Buddhism texts.

During the journey, Tang Monk was often captured by demons. Most of demons wanted to eat Tang Monk to achieve immortality, but some female demons just wanted to marry him because he was handsome. So, fighting demons and saving Monk Tang is the major job for Sun Wukong to do.

Once, Tang Monk was captured by the demon White Bones. White Bones lived in a palace and she cuffed Tang Monk in a room. Sun Wukong managed to get into the palace. But to rescue Tang Monk, Sun Wukong might need to get some keys and kill some snakes in his way.

The palace can be described as a matrix of characters. Each character stands for a room. In the matrix, 'K' represents the original position of Sun Wukong, 'T' represents the location of Tang Monk and 'S' stands for a room with a snake in it. Please note that there are only one 'K' and one 'T', and at most five snakes in the palace. And, '.' means a clear room as well '#' means a deadly room which Sun Wukong couldn't get in.

There may be some keys of different kinds scattered in the rooms, but there is at most one key in one room. There are at most 9 kinds of keys. A room with a key in it is represented by a digit(from '1' to '9'). For example, '1' means a room with a first kind key, '2' means a room with a second kind key, '3' means a room with a third kind key... etc. To save Tang Monk, Sun Wukong must get ALL kinds of keys(in other words, at least one key for each kind).

For each step, Sun Wukong could move to the adjacent rooms(except deadly rooms) in 4 directions(north, west, south and east), and each step took him one minute. If he entered a room in which a living snake stayed, he must kill the snake. Killing a snake also took one minute. If Sun Wukong entered a room where there is a key of kind N, Sun would get that key if and only if he had already got keys of kind 1,kind 2 ... and kind N-1. In other words, Sun Wukong must get a key of kind N before he could get a key of kind N+1 (N>=1). If Sun Wukong got all keys he needed and entered the room in which Tang Monk was cuffed, the rescue mission is completed. If Sun Wukong didn't get enough keys, he still could pass through Tang Monk's room. Since Sun Wukong was a impatient monkey, he wanted to save Tang Monk as quickly as possible. Please figure out the minimum time Sun Wukong needed to rescue Tang Monk.
 

Input

There are several test cases.

For each case, the first line includes two integers N and M(0 < N <= 100, 0<=M<=9), meaning that the palace is a N×N matrix and Sun Wukong needed M kinds of keys(kind 1, kind 2, ... kind M).

Then the N × N matrix follows.

The input ends with N = 0 and M = 0.
 

Output

For each test case, print the minimum time (in minutes) Sun Wukong needed to save Tang Monk. If it's impossible for Sun Wukong to complete the mission, print "impossible"(no quotes).
 

Sample Input

3 1K.S##11#T3 1K#T.S#1#.3 2K#T.S.21.0 0
 

Sample Output

5impossible8
 


这个题是一个很基础的广搜==然而WA了一个多点儿,为什么呢,因为数组开小了,n不是列数!!

dp[当前x坐标][当前y坐标][拿到钥匙个数][杀死蛇的状态],其中第二维用到了二进制存储的。比较赞的是把蛇的“S”转化成了A~G,这样转移比较方便。还有就是初始化直接把网格赋成0,都省的判断是否出界了==


/************hdu50252016.3.24405MS18976K2062 BG++*************/#include <iostream>#include<cstring>#include<cstdio>#include<queue>using namespace std;struct node{    int x,y,k,s,d;    node(){}    node(int xx,int yy,int kk,int ss,int dd){x=xx;y=yy;k=kk;s=ss;d=dd;}};queue<node>q;int dir[4][2]={1,0,0,1,-1,0,0,-1};char str[110][110];int n,m,sn,sx,sy;int dp[110][110][11][33];int bfs(){    int ans=0x3f3f3f3f;    node t,tnext;    t.x=sx,t.y=sy,t.k=t.s=t.d=0;    while(!q.empty())q.pop();    q.push(t);    while(!q.empty())    {        t=q.front();        q.pop();        if(str[t.x][t.y]=='T'&&t.k==m)            if(ans>t.d)                ans=t.d;        if(dp[t.x][t.y][t.k][t.s]!=-1)continue;        dp[t.x][t.y][t.k][t.s]=t.d;        for(int i=0;i<4;i++)        {            int nx=t.x+dir[i][0];            int ny=t.y+dir[i][1];            int st=str[nx][ny]-'A';            if(st>=0&&st<sn)                if(t.s&(1<<st))                    q.push(node(nx,ny,t.k,t.s,t.d+1));                else                    q.push(node(nx,ny,t.k,t.s|(1<<st),t.d+2));            else                if(str[nx][ny]=='1'+t.k)                    q.push(node(nx,ny,t.k+1,t.s,t.d+1));                else if(str[nx][ny]>='1'&&str[nx][ny]<'1'+m)                    q.push(node(nx,ny,t.k,t.s,t.d+1));                else if(str[nx][ny]=='.'||str[nx][ny]=='K'||str[nx][ny]=='T')                    q.push(node(nx,ny,t.k,t.s,t.d+1));        }    }    return ans;}int main(){   // freopen("cin.txt","r",stdin);    while(~scanf("%d%d",&n,&m)&&n)    {        sn=0;        memset(dp,-1,sizeof(dp));        memset(str,0,sizeof(str));        for(int i=1;i<=n;i++)        {            scanf("%s",str[i]+1);            for(int j=1;j<=n;j++)            {                if(str[i][j]=='S')str[i][j]='A'+sn,sn++;                if(str[i][j]=='K')sx=i,sy=j;            }        }        int ans=bfs();        if(ans<0x3f3f3f3f)printf("%d\n",ans);        else printf("impossible\n");    }    return 0;}


0 0
原创粉丝点击