Codeforces Round #354 (Div. 2) D. Theseus and labyrinth

 Theseus and labyrinth
time limit :3 seconds
memory limit :256 megabytes

题目连接:

http://www.codeforces.com/contest/676/problem/D

Description

Theseus has just arrived to Crete to fight Minotaur. He found a labyrinth that has a form of a rectangular field of size n × m and consists of blocks of size 1 × 1.

Each block of the labyrinth has a button that rotates all blocks 90 degrees clockwise. Each block rotates around its center and doesn't change its position in the labyrinth. Also, each block has some number of doors (possibly none). In one minute, Theseus can either push the button in order to rotate all the blocks 90 degrees clockwise or pass to the neighbouring block. Theseus can go from block A to some neighbouring block B only if block A has a door that leads to block B and block B has a door that leads to block A.

Theseus found an entrance to labyrinth and is now located in block (xT, yT) — the block in the row xT and column yT. Theseus know that the Minotaur is hiding in block (xM, yM) and wants to know the minimum number of minutes required to get there.

Theseus is a hero, not a programmer, so he asks you to help him.

Input

The first line of the input contains two integers n and m (1 ≤ n, m ≤ 1000) — the number of rows and the number of columns in labyrinth, respectively.

Each of the following n lines contains m characters, describing the blocks of the labyrinth. The possible characters are:

«+» means this block has 4 doors (one door to each neighbouring block);
«-» means this block has 2 doors — to the left and to the right neighbours;
«|» means this block has 2 doors — to the top and to the bottom neighbours;
«^» means this block has 1 door — to the top neighbour;
«>» means this block has 1 door — to the right neighbour;
«<» means this block has 1 door — to the left neighbour;
«v» means this block has 1 door — to the bottom neighbour;
«L» means this block has 3 doors — to all neighbours except left one;
«R» means this block has 3 doors — to all neighbours except right one;
«U» means this block has 3 doors — to all neighbours except top one;
«D» means this block has 3 doors — to all neighbours except bottom one;
«*» means this block is a wall and has no doors.
Left, right, top and bottom are defined from representing labyrinth as a table, where rows are numbered from 1 to n from top to bottom and columns are numbered from 1 to m from left to right.

Next line contains two integers — coordinates of the block (xT, yT) (1 ≤ xT ≤ n, 1 ≤ yT ≤ m), where Theseus is initially located.

Last line contains two integers — coordinates of the block (xM, yM) (1 ≤ xM ≤ n, 1 ≤ yM ≤ m), where Minotaur hides.

It's guaranteed that both the block where Theseus starts and the block where Minotaur is hiding have at least one door. Theseus and Minotaur may be initially located at the same block.

Output

If Theseus is not able to get to Minotaur, then print -1 in the only line of the output. Otherwise, print the minimum number of minutes required to get to the block where Minotaur is hiding.

Sample Input

2 2
+
U
1 1
2 2

Sample Output

-1

Hint

题意

给你一个n*m的地图,然后地图有很多标志如题所述

然后他每秒钟要么可以穿过门,要么可以使得所有门都顺时针转动90°

如果你要从A到B,那么从B也必须能够到达A

问你从起点到终点的最短时间是多少

题解:

直接BFS就可以了。

最近发现迷宫题好好玩,感觉懂了状态压缩就能ak迷宫题了。

代码

#include<bits/stdc++.h>
using namespace std;
const int maxn=1000+7;
int n,m,ans;
char mat[4][maxn][maxn];
int vis[maxn][maxn][4];
int dx[]={1,-1,0,0};
int dy[]={0,0,1,-1};
int x,y,x2,y2;
struct node{
    int x,y,s,t;
};
node st;
char change(char x)
{
    if(x=='+') return '+';
    if(x=='-') return '|';
    if(x=='|') return '-';
    if(x=='^') return '>';
    if(x=='>') return 'v';
    if(x=='v') return '<';
    if(x=='<') return '^';
    if(x=='L') return 'U';
    if(x=='R') return 'D';
    if(x=='U') return 'R';
    if(x=='D') return 'L';
    if(x=='*') return '*';
}
bool ok_R(char x)
{
    if(x=='+'||x=='-'||x=='>'||x=='L'||x=='U'||x=='D') return true;
    return false;
}
bool ok_L(char x)
{
    if(x=='+'||x=='-'||x=='<'||x=='R'||x=='U'||x=='D') return true;
    return false;
}
bool ok_U(char x)
{
    if(x=='+'||x=='|'||x=='^'||x=='L'||x=='R'||x=='D') return true;
    return false;
}
bool ok_D(char x)
{
    if(x=='+'||x=='|'||x=='v'||x=='L'||x=='U'||x=='R') return true;
    return false;
}
bool check(node x,node y,int k)
{
    int t=x.s;
    char a=mat[t][x.x][x.y],b=mat[t][y.x][y.y];
    if(k==2){
        if(ok_R(a)&&ok_L(b)) return true;
        return false;
    }
    if(k==3){
        if(ok_R(b)&&ok_L(a)) return true;
        return false;
    }
    if(k==0){
        if(ok_D(a)&&ok_U(b)) return true;
        return false;
    }
    if(k==1){
        if(ok_U(a)&&ok_D(b)) return true;
        return false;
    }
}
void bfs()
{
    queue<node>q;
    q.push(st);
    vis[x][y][0]=1;
    while(!q.empty()){
        node cur=q.front();
        q.pop();
        //cout<<"has"<<endl;
        if(cur.x==x2&&cur.y==y2){
            ans=cur.t;
            break;
        }
        if(!vis[cur.x][cur.y][(cur.s+1)%4]){
            node next=cur;
            next.s=(cur.s+1)%4,next.t+=1;
            q.push(next);
            vis[next.x][next.y][next.s]=1;
        }
        for(int i=0;i<4;i++){
            node next=cur;
            next.x+=dx[i];
            next.y+=dy[i];
            next.t+=1;
            if(next.x<0||next.x>=n) continue;
            if(next.y<0||next.y>=m) continue;
            if(vis[next.x][next.y][next.s]) continue;
            if(!check(cur,next,i)) continue;
            q.push(next);
            vis[next.x][next.y][next.s]=1;
        }
    }
    return ;
}
int main()
{
    ans=-1;
    //freopen("in.txt","r",stdin);
    scanf("%d %d",&n,&m);
    for(int i=0;i<n;i++) scanf("%s",mat[0][i]);
    for(int l=1;l<4;l++)
        for(int i=0;i<n;i++)
            for(int j=0;j<m;j++)
                mat[l][i][j]=change(mat[l-1][i][j]);
   /* for(int l=0;l<4;l++)
        for(int i=0;i<n;i++)
            cout<<mat[l][i]<<endl;*/
    scanf("%d%d%d%d",&x,&y,&x2,&y2);
    x--,y--,x2--,y2--;
    //cout<<x<<y<<x2<<y2;
    st.x=x,st.y=y,st.s=0,st.t=0;
    bfs();
    printf("%d
",ans);
    return 0;
}
原文地址:https://www.cnblogs.com/wangdongkai/p/5531881.html