码迷,mamicode.com
首页 > 其他好文 > 详细

poj3984 迷宫问题(简单的输出路径的bfs)

时间:2016-11-22 19:53:05      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:stream   输出   ios   include   结构体   tar   str   .mm   class   

题目链接 http://poj.org/problem?id=3984

中文题题意不解释了

反正就是简单的结构体套结构体存一下路径就行了

 

#include <iostream>
#include <cstring>
#include <deque>
#include <queue>
using namespace std;
int map[6][6];
struct ss {
    int x , y;
};
struct TnT {
    deque<ss>mm;
};
int vis[6][6] , dr[4][2] = {1 , 0 , -1 , 0 , 0 , 1 , 0 , -1};
TnT bfs(int x , int y) {
    memset(vis , 0 , sizeof(vis));
    TnT gg;
    ss gl;
    gl.x = x , gl.y = y;
    vis[x][y] = 1;
    gg.mm.push_back(gl);
    queue<TnT>q;
    q.push(gg);
    while(!q.empty()) {
        TnT ml = q.front();
        ss xg = ml.mm.back();
        if(xg.x == 4 && xg.y == 4) {
            return ml;
        }
        for(int i = 0 ; i < 4 ; i++) {
            TnT sg = ml;
            ss xl = ml.mm.back();
            xl.x += dr[i][0];
            xl.y += dr[i][1];
            if(xl.x >= 0 && xl.x < 5 && xl.y >= 0 && xl.y < 5 && !map[xl.x][xl.y] && !vis[xl.x][xl.y]) {
                vis[xl.x][xl.y] = 1;
                sg.mm.push_back(xl);
                q.push(sg);
            }
        }
        q.pop();
    }
    return q.front();
}
int main()
{
    for(int i = 0 ; i < 5 ; i++) {
        for(int j = 0 ; j < 5 ; j++) {
            cin >> map[i][j];
        }
    }
    TnT q = bfs(0 , 0);
    while(!q.mm.empty()) {
        ss sl = q.mm.front();
        q.mm.pop_front();
        cout << "(" << sl.x << ", " << sl.y << ")" << endl;
    }
    return 0;
}

poj3984 迷宫问题(简单的输出路径的bfs)

标签:stream   输出   ios   include   结构体   tar   str   .mm   class   

原文地址:http://www.cnblogs.com/TnT2333333/p/6090657.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!