ZOJ3865:Superbot(BFS) -电脑资料

电脑资料 时间:2019-01-01 我要投稿
【www.unjs.com - 电脑资料】

    Superbotis an interesting game which you need to control the robot on anN*Mgrid map.

    As you see, it's just a simple game: there is a control panel with four direction left (1stposition), right (2nd), up (3rd) and down (4th). For each second, you can do exact one of the following operations:

Move the cursor to left or right for one position. If the cursor is on the 1stposition and moves to left, it will move to 4thposition; vice versa.Press the button. It will make the robot move in the specific direction.Drink a cup of hot coffee and relax. (Do nothing)

    However, it's too easy to play. So there is a little trick: EveryPseconds the panel will rotate its buttons right. More specifically, the 1stposition moves to the 2ndposition; the 2ndmoves to 3rd; 3rdmoves to 4thand 4thmoves to 1st. The rotating starts at the beginning of the second.

    Please calculate the minimum time that the robot can get the diamond on the map.

    At the beginning, the buttons on the panel are "left", "right", "up", "down" respectively from left to right as the picture above, and the cursor is pointing to "left".

Input

    There are multiple test cases. The first line of input contains an integerTindicating the number of test cases. For each test case:

    The first line contains three integersN,M(2 <=N,M<= 10) andP(1 <=P<= 50), which represent the height of the map, the width of the map and the period that the panel changes, respectively.

    The following lines of input containsNlines withMchars for each line. In the map, "." means the empty cell, "*" means the trap which the robot cannot get in, "@" means the initial position of the robot and "$" means the diamond. There is exact one robot and one diamond on the map.

Output

    For each test case, output minimum time that the robot can get the diamond. Output "YouBadbad" (without quotes) if it's impossible to get the diamond.

Sample Input

43 4 50@...***.$...5 5 2.......@...*...$.*.......2 3 1*.@$.*5 5 2*****..@..*****$.........

Sample Output

    12

    4

    4

    YouBadbad

Hint

    For the first example:

    0s: start

    1s: cursor move right (cursor is at "right")

    2s: press button (robot move right)

    3s: press button (robot move right)

    4s: press button (robot move right)

    5s: cursor move right (cursor is at "up")

    6s: cursor move right (cursor is at "down")

    7s: press button (robot move down)

    8s: press button (robot move down)

    9s: cursor move right (cursor is at "left")

    10s: press button (robot move left)

    11s: press button (robot move left)

    12s: press button (robot move left)

    For the second example:

    0s: start

    1s: press button (robot move left)

    2s: press button (robot move left)

    --- panel rotated ---

    3s: press button (robot move down, without changing cursor)

    4s: press button (robot move down)

    For the third example:

    0s: start

    1s: press button (robot move left)

    --- panel rotated ---

    2s: press button (robot move down)

    --- panel rotated ---

    3s: cursor move left (cursor is at "right")

    --- panel rotated ---

    4s: press button (robot move left)

    对于一个迷宫,@是起点,$是终点,.是路,*是陷阱不能走

    有四个控制键,从左到右是左右上下,但是这些控制键每P秒向右移动一个单位

    光标一开始在最左边,光标每向左或者向右移动一个单位花费一秒,每按下一次花费一秒,机器人只有在按下按钮的时候才会移动一次,求最少离开迷宫的时间

#include<iostream>#include<stdio.h>#include<string.h>#include<stack>#include<queue>#include<map>#include<set>#include<vector>#include<math.h>#include using namespace std;#define ls 2*i#define rs 2*i+1#define up(i,x,y) for(i=x;i<=y;i++)#define down(i,x,y) for(i=x;i>=y;i--)#define mem(a,x) memset(a,x,sizeof(a))#define w(a) while(a)#define LL long longconst double pi = acos(-1.0);#define Len 100005#define mod 1000000007const int inf = 1<<30;struct Point{    int x,y,di,t;//di为光标停留的时间    Point() {}    Point(int a,int b,int c,int d):x(a),y(b),di(c),t(d) {}};int n,m,p;int di[4][2]= {{0,-1},{0,1},{-1,0},{1,0}};int dis[15][15][5];char mat[15][15];int main(){    int t,i,j,k;    scanf("%d",&t);    w(t--)    {        scanf("%d%d%d",&n,&m,&p);        int stx,sty,enx,eny;        up(i,0,n-1)        {            scanf("%s",mat[i]);            up(j,0,m-1)            {                if(mat[i][j]=='@')                {                    stx=i;                    sty=j;                }                else if(mat[i][j]=='$')                {                    enx=i;                    eny=j;                }            }        }        up(i,0,14)        {            up(j,0,14)            {                up(k,0,4)                {                    dis[i][j][k] = inf-1;                }            }        }        dis[stx][sty][0]=0;        queue<point>q;        q.push(Point(stx,sty,0,0));        while(!q.empty())        {            Point ss=q.front();            q.pop();            Point ss2=ss;            ss2.t++;            if(ss2.t%p==0)            {                ss2.di=(ss2.di-1+4)%4;            }            int dd=ss2.di;            if(dis[ss.x][ss.y][dd]>dis[ss.x][ss.y][ss.di]+1)            {                dis[ss.x][ss.y][dd]=dis[ss.x][ss.y][ss.di]+1;                q.push(Point(ss.x,ss.y,dd,ss2.t));            }            dd=(ss2.di-1+4)%4;            if(dis[ss.x][ss.y][dd]>dis[ss.x][ss.y][ss.di]+1)            {                dis[ss.x][ss.y][dd]=dis[ss.x][ss.y][ss.di]+1;                q.push(Point(ss.x,ss.y,dd,ss2.t));            }            dd=(ss2.di+1)%4;            if(dis[ss.x][ss.y][dd]>dis[ss.x][ss.y][ss.di]+1)            {                dis[ss.x][ss.y][dd]=dis[ss.x][ss.y][ss.di]+1;                q.push(Point(ss.x,ss.y,dd,ss2.t));            }            int x=ss.x+di[ss.di][0];            int y=ss.y+di[ss.di][1];            if(x>=0&&y>=0&&x<n&&y<m)>dis[ss.x][ss.y][ss.di]+1)                    {                        dis[x][y][ss2.di]=dis[ss.x][ss.y][ss.di]+1;                        q.push(Point(x,y,ss2.di,dis[x][y][ss2.di]));                    }        }        int ans=inf;        for(int i=0; i<4; i++)            ans=min(ans,dis[enx][eny][i]);        if(ans==inf-1)            printf("YouBadbad\n");        else            printf("%d\n",ans);    }    return 0;}</n&&y<m)></point></math.h></vector></set></map></queue></stack></string.h></stdio.h></iostream>

   

最新文章