poj3984

定义一个二维数组:

int maze[5][5] = {
	0, 1, 0, 0, 0,
	0, 1, 0, 1, 0,
	0, 0, 0, 0, 0,
	0, 1, 1, 1, 0,
	0, 0, 0, 1, 0,
};

它表示一个迷宫,其中的1表示墙壁,0表示可以走的路,只能横着走或竖着走,不能斜着走,要求编程序找出从左上角到右下角的最短路线。

Input

一个5 × 5的二维数组,表示一个迷宫。数据保证有唯一解。

Output

左上角到右下角的最短路径,格式如样例所示。

Sample Input

0 1 0 0 0
0 1 0 1 0
0 0 0 0 0
0 1 1 1 0
0 0 0 1 0

Sample Output

(0, 0)
(1, 0)
(2, 0)
(2, 1)
(2, 2)
(2, 3)
(2, 4)
(3, 4)
(4, 4)

解题思路

广搜问题:在正常基础上多定义一个父节点,可以根据结构体回溯

#include<stdio.h>
#include<string.h>
#include<iostream>
#include<algorithm>
using namespace std;
int a[6][6],book[6][6];
struct node
{
    int x;
    int y;
    int s;
    int f;
}que[100];
int main()
{
    int next[4][2]={1,0,0,-1,-1,0,0,1};
    for(int i=0;i<5;i++)
    for(int j=0;j<5;j++)
    scanf("%d",&a[i][j]);
    int head=1,tail=1;
    que[head].x=0;
    que[head].y=0;
    que[head].s=0;
    que[head].f=0;
    book[1][1]=1;
    tail++;
    int flag=0,tx,ty;
    while(head<tail)
    {
        for(int k=0;k<=3;k++)
        {
            tx=que[head].x+next[k][0];
            ty=que[head].y+next[k][1];
            if(tx<0||tx>4||ty<0||ty>4)
            continue;
            if(a[tx][ty]==0&&book[tx][ty]==0)
            {
                book[tx][ty]=1;
                que[tail].x=tx;
                que[tail].y=ty;
                que[tail].s=que[head].s+1;
                que[tail].f=head;
                tail++;
            }
            if(tx==4&&ty==4)
            {
                flag=1;
                break;
            }

}
        if(flag==1)
            break;
            head++;

}
    int ax[30]={0},ay[30]={0};
    int z=-1;
    ax[++z]=que[tail-1].x;
    ay[z]=que[tail-1].y;
      int sum=que[tail-1].s;
   tail=tail-1;

for(int i=1;i<sum;i++)
    {
        tail=que[tail].f;
        ax[++z]=que[tail].x;
        ay[z]=que[tail].y;
    }
    ax[++z]=0;
    ay[z]=0;

for(int j=z;j>=0;j--)
    printf("(%d, %d)\n",ax[j],ay[j]);
    return 0;
}

时间: 2024-10-09 23:40:57

poj3984的相关文章

POJ3984 迷宫问题【水BFS】

#include <cstdio> #include <cmath> #include <iostream> #include <algorithm> #include <cstdlib> #include <cstring> #include <map> #include <vector> using namespace std; map<string,int>mymap; map<stri

搜索问题——POJ3984迷宫问题

Description 定义一个二维数组: int maze[5][5] = { 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, }; 它表示一个迷宫,其中的1表示墙壁,0表示可以走的路,只能横着走或竖着走,不能斜着走,要求编程序找出从左上角到右下角的最短路线. Input 一个5 × 5的二维数组,表示一个迷宫.数据保证有唯一解. Output 左上角到右下角的最短路径,格式如样例所示. Sa

暑假集训(1)第八弹 -----Catch the cow(Poj3984)

Description 定义一个二维数组: int maze[5][5] = { 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, }; 它表示一个迷宫,其中的1表示墙壁,0表示可以走的路,只能横着走或竖着走,不能斜着走,要求编程序找出从左上角到右下角的最短路线. Input 一个5 × 5的二维数组,表示一个迷宫.数据保证有唯一解. Output 左上角到右下角的最短路径,格式如样例所示. Sa

POJ3984(迷宫问题)

迷宫问题 Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 15154   Accepted: 9030 Description 定义一个二维数组: int maze[5][5] = { 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, }; 它表示一个迷宫,其中的1表示墙壁,0表示可以走的路,只能横着走或竖着走,不能斜着走,

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

题目链接 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>

poj3984(经典dfs)

题目链接:http://poj.org/problem?id=3984 分析:直接深搜从起点到终点,如何取最短路线,其实只要优先向下或向右走即可. #include <cstdio> #include <cstring> #include <cmath> #include <iostream> #include <algorithm> #include <queue> #include <cstdlib> #include

迷宫问题---poj3984(bfs,输出路径问题)

题目链接 主要就是输出路径问题: pre[x][y]表示到达(x,y)是由点(pre[x][y].x,  pre[x][y].y)而来: #include<stdio.h> #include<iostream> #include<string.h> #include<queue> #include<algorithm> using namespace std; #define N 220 #define INF 0xfffffff int dir

POJ3984 迷宫问题【BFS】

题目链接: http://poj.org/problem?id=3984 题目大意: 用一个5*5的二维数组表示迷宫,输出左上角到右下角的最短路径. 思路: 用BFS求最短路径.用pre[]来记录每个状态之前的状态,然后递归输出路径. AC代码: #include<iostream> #include<algorithm> #include<cstdio> #include<cstring> using namespace std; int Map[6][6

poj3984 广度搜索BFS

迷宫问题 Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 27072   Accepted: 15622 Description 定义一个二维数组: int maze[5][5] = { 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, }; 它表示一个迷宫,其中的1表示墙壁,0表示可以走的路,只能横着走或竖着走,不能斜着走