poj 3984 迷宫问题(bfs 输出序列)

#include <iostream>
#include <cstdio>
#include <string.h>
#include <queue>

using namespace std;

int v[10][10];
int cnt[10][10];// 记录走到这点的时间

int d[4][2] = {{-1,0},{1,0},{0,-1},{0,1}};

struct node{
    int x,y;
    node(){}
    node(int xx,int yy){
        x = xx,y = yy;
    }
};

void bfs(){
    queue<node> q;
    q.push(node(1,1));
    while(!q.empty()){
        node temp = q.front();
        q.pop();
        for(int i = 0;i < 4;i++){
            int a = temp.x + d[i][0], b = temp.y + d[i][1];
            if(v[a][b]){
                cnt[a][b] = cnt[temp.x][temp.y] + 1;
                v[a][b] = 0;
                q.push(node(a,b));
            }
        }
    }
}
int ans[26][2];// 保存路径

int pri(){
    ans[1][0] = 5,ans[1][1] = 5;
    int cou = 1;
    node now(5,5);
    int flag = 1;
    while(1){
        flag = cou;
        for(int i = 0;i < 4;i++){
            int a = now.x + d[i][0], b = now.y + d[i][1];
            if(cnt[a][b] != 0 && cnt[a][b] < cnt[now.x][now.y]){
                ans[++cou][0] = a;
                ans[cou][1] = b;
                now.x = a,now.y = b;
                break;
            }
        }
        if(cou == flag){
            break;
        }
    }
    ans[++cou][0] = 1,ans[cou][1] = 1;
    return cou;
}

int main()
{
    int n = 5;
    for(int i = 1;i <= n;i++){
        for(int j = 1;j <= n;j++){
            scanf("%d",&v[i][j]);
            v[i][j] ^= 1;//1变0,0变1
        }
    }
    v[1][1] = 0;
    bfs();
    int cou = pri();
    for(int i = 0;i < cou;i++){
        printf("(%d, %d)\n",ans[cou-i][0]-1,ans[cou-i][1]-1);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值