第10回ブルーブリッジカップC/C++B組E迷宮


E題迷宮
[問題の説明]:次の図は迷路の平面図を示しており、1と表記されたものが障害であり、0と表記されたものが通行可能な場所である.
010000 000100 001001 110000
  迷宮の入り口は左上角、出口は右下角で、迷宮の中で、一つの位置からこの上、下、左、右の4つの方向の1つしか歩けない.上の迷路については、入口からDRRURRDDDRの順に迷路を通過することができ、全部で10歩です.このうちD,U,L,Rはそれぞれ下,上,左,右を表す.次のようなより複雑な迷路(30行50列)については、迷路を通過する方法を見つけてください.使用するステップ数が最も少なく、ステップ数が最も少ない前提の下で、辞書の順序が最も小さいものを答えとして見つけてください.辞書順ではD
01010101001011001001010110010110100100001000101010 00001000100000101010010000100000001001100110100101 01111011010010001000001101001011100011000000010000 01000000001010100011010000101000001010101011001011 00011111000000101000010010100010100000101100000000 11001000110101000010101100011010011010101011110111 00011011010101001001001010000001000101001110000000 10100000101000100110101010111110011000010000111010 00111000001010100001100010000001000101001100001001 11000110100001110010001001010101010101010001101000 00010000100100000101001010101110100010101010000101 11100100101001001000010000010101010100100100010100 00000010000000101011001111010001100000101010100011 10101010011100001000011000010110011110110100001000 10101010100001101010100101000010100000111011101001 10000000101100010000101100101101001011100000000100 10101001000000010100100001000100000100011110101001 00101001010101101001010100011010101101110000110101 11001010000100001100000010100101000001000111000010 00001000110000110101101000000100101001001000011101 10100101000101000000001110110010110101101010100001 00101000010000110101010000100010001001000100010101 10100001000110010001000010101001010101011111010010 00000100101000000110010100101001000001000000000010 11010000001001110111001001000011101001011011101000 00000110100010001000100000001000011101000000110011 10101000101000100010001111100010101001010000001000 10000010100101001010110000000100101010001011101000 00111100001000010000000110111000000001000000001011 10000001100111010111010001000110111010101101111000
  BFS+はパスを求めます.辞書の順序が一番小さいので、遍歴方向の順序を規定して、直接探せばいいです.回答:
DDDDRRURRRRRRDRRRRDDDLDDRDDDDDDDDDDDDRDDRRRURRUURRDDDDRDRRRRRRDRRURRDDDRRRRUURUUUUUUULULLUUUURRRRUULLLUUUULLUUULUURRURRURURRRDDRRRRRDDRRDDLLLDDRRDDRDDLDDDLLDDLLLDLDDDLDDRRRRRRRRRDDDDDDRR
#include 
using namespace std;
char dire[5]="DLRU";    // @dev set the priority
int dx[4] = {1, 0, 0, -1};
int dy[4] = {0, -1, 1, 0};
struct Node{
    int x, y;
    int dir, pre, id;
    void set(int ID, int tx, int ty, int tdir, int tpre) {id = ID; x = tx; y = ty; dir = tdir; pre = tpre;}
} node[2505];
char mp[55][55];
bool vis[55][55];

inline bool check(int x, int y) {
    return x >= 0 && x < 30 && y >= 0 && y < 50 && mp[x][y] == '0' && !vis[x][y];
}

void getRoute(int step) {
    if ( step == 1 )    return ;
    getRoute(node[step].pre);
    cout << dire[node[step].dir];
}

int main() {
    freopen("maze.txt", "r", stdin);
    queue<Node> que;
    for(int i = 0; i < 30; i++) scanf("%s", mp[i]);
    vis[0][0] = true;   int cnt = 1;
    node[cnt].set(1, 0, 0, -1, -1);    que.push(node[cnt++]);

    while( que.size() ) {
        Node tmp_node = que.front();    que.pop();

        for ( int i = 0; i < 4; i++ ) {
            int tx = tmp_node.x+dx[i];
            int ty = tmp_node.y+dy[i];

            // @dev judge the boundary
            if( !check(tx, ty) )    continue ;

            node[cnt].set(cnt, tx, ty, i, tmp_node.id);
            que.push( node[cnt++] );    vis[tx][ty] = true;

            // @dev reach the destination
            if( tx == 29 && ty == 49 )  break ;
        }
    }

    getRoute(--cnt);
    return 0;
}