(BFS)poj2935-Basic Wall Maze

题目地址

题目与最基本的BFS迷宫的区别就是有一些障碍,可以通过建立三维数组,标记某个地方有障碍不能走。另一个点是输出路径,对此建立结构体时要建立一个pre变量,指向前一个的下标。这样回溯(方法十分经典)就可以顺利的输出。

这道题难度的确很小,可是我却花了近两个小时才顺利AC,实在是现在水平太不足了,要努力学习的真的是有好多啊。不管怎样,尽力吧。

  1 #include<cstdio>
  2 #include<cstring>
  3 #include<algorithm>
  4 #include<queue>
  5 using namespace std;
  6 struct grid
  7 {
  8     int x,y;//坐标
  9     int pre;//回溯前一个的下标
 10     int dir;
 11 }point[5025];
 12 int si,sj,ei,ej,a[4],dir[10][10][4],direction[4][2]={{-1,0},{0,1},{1,0},{0,-1}},vi[8][8];
 13 int  bfs()
 14 {
 15     memset(vi,0,sizeof(vi));
 16     int front=0,tail=1;
 17     point[front].x=si;
 18     point[front].y=sj;
 19     point[front].pre=-1;
 20     grid temp,temp2;
 21     vi[si][sj]=1;
 22     while(front<tail)
 23     {
 24         temp=point[front];
 25         for(int i=0;i<4;i++)
 26         {
 27             if(dir[temp.x][temp.y][i]==1){continue;}
 28             else
 29             {
 30                 temp2.x=temp.x+direction[i][0];
 31                 temp2.y=temp.y+direction[i][1];
 32                 temp2.dir=i;
 33                 if(vi[temp2.x][temp2.y])
 34                     continue;
 35                 else
 36                 {
 37                     temp2.pre=front;
 38                     vi[temp2.x][temp2.y]=1;
 39                     point[tail++]=temp2;
 40                     if(temp2.x==ei&&temp2.y==ej)
 41                         return (tail-1);
 42                 }
 43             }
 44         }
 45         front++;
 46     }
 47 }
 48 void print(int x)//经典的输出方式
 49 {
 50     if(x>0)
 51         {
 52         print(point[x].pre);
 53         if(point[x].dir==0)
 54         {
 55             printf("N");
 56         }
 57         else if(point[x].dir==1)
 58         {
 59             printf("E");
 60         }
 61         else if(point[x].dir==2)
 62         {
 63             printf("S");
 64         }
 65         else printf("W");
 66         }
 67
 68 }
 69 int main()
 70 {
 71     while(scanf("%d%d",&sj,&si))
 72     {
 73         int i,j,k,an;
 74         if(si==0&&sj==0)
 75             break;
 76         scanf("%d%d",&ej,&ei);
 77         memset(dir,0,sizeof(dir));
 78         for(i=1;i<=6;i++)
 79         {
 80             dir[1][i][0]=1;
 81             dir[6][i][2]=1;
 82             dir[i][1][3]=1;
 83             dir[i][6][1]=1;
 84         }
 85         for(j=0;j<3;j++){
 86         scanf("%d %d %d %d",&a[1],&a[0],&a[3],&a[2]);//注意数据是行列与平常不同的
 87
 88         if(a[0]==a[2])
 89         {
 90             for(k=min(a[1],a[3])+1;k<max(a[1],a[3])+1;k++)
 91             {
 92                 dir[a[0]+1][k][0]=1;
 93                 dir[a[0]][k][2]=1;
 94             }
 95         }
 96         else
 97         {
 98             for(k=min(a[0],a[2])+1;k<max(a[0],a[2])+1;k++)
 99             {
100                 dir[k][a[1]+1][3]=1;
101                 dir[k][a[1]][1]=1;
102             }
103         }
104     }
105     an=bfs();
106     print(an);
107     puts("");
108     }
109     return 0;
110 }
时间: 2024-12-31 00:59:18

(BFS)poj2935-Basic Wall Maze的相关文章

POJ2935 Basic Wall Maze bfs记录路径

链接:   POJ2935 题意: 6 X 6的地图   格子和格子可能有墙      整个地图中有三道墙      求起点起点到终点的路径 本题中的墙可以理解为某a位置的X方向不能走   即用一个三维数组map[x][y][z]表示(x,y)的Z方向不能走 关于记录路径可以用一个pre数组记录每个坐标的前一个坐标的复合值  最后倒序输出方向即可 代码 #include<iostream> #include<cstdio> #include<cstring> #incl

22 poj2935 Basic Wall Maze --- bfs

对于每个点有四个方向可以走,把墙两边的点对应墙的方向能不能走给预处理一下,用vis[x][y][0..3]表示点(x,y)的该方向可不可以走. 然后bfs就好了,记录路径就把每个结点的前一个点记录下来,递归输出就可以了. #include<cstdio> #include<queue> #include<cstring> using namespace std; int dx[]={0,0,1,-1}; int dy[]={1,-1,0,0}; bool vis[7][

迷宫问题(maze problem)——深度优先(DFS)与广度优先搜索(BFS)求解

1.问题简介 给定一个迷宫,指明起点和终点,找出从起点出发到终点的有效可行路径,就是迷宫问题(maze problem). 迷宫可以以二维数组来存储表示.0表示通路,1表示障碍.注意这里规定移动可以从上.下.左.右四方方向移动.坐标以行和列表示,均从0开始,给定起点(0,0)和终点(4,4),迷宫表示如下: int maze[5][5]={ {0,0,0,0,0}, {0,1,0,1,0}, {0,1,1,0,0}, {0,1,1,0,1}, {0,0,0,0,0} }; 那么下面的迷宫就有两条

[C++]广度优先搜索(BFS)(附例题)

广度优先搜索(BFS)(附例题) 问题产生: Isenbaev是国外的一个大牛. 现在有许多人要参加ACM ICPC. 一共有n个组,每组3个人.同组的3个人都是队友. 大家都想知道自己与大牛的最小距离是多少. 大牛与自己的最小距离当然是0.大牛的队友和大牛的最小距离是1.大牛的队友的队友和大牛的最小距离是2--以此类推. 如果实在和大牛没有关系的只好输出undefined了. 第一行读入n.表示有n个组.1 ≤ n ≤ 100 接下来n行,每行有3个名字,名字之间用空格隔开.每个名字的开头都是

POJ 2935 Basic Wall Maze

http://poj.org/problem?id=2935 Basic Wall Maze Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 2794   Accepted: 1271   Special Judge Description In this problem you have to solve a very simple maze consisting of: a 6 by 6 grid of unit sq

pots(BFS)

D - Pots Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu Submit Status Description You are given two pots, having the volume of A and B liters respectively. The following operations can be performed: Input On the first and

USACO抓牛catchcow (bfs)

这题是黄巨大出的比赛题. http://poj.org/problem?id=3278 Description Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and the cow is at a point K (0 ≤ K ≤

hdu 1728 逃离迷宫 (BFS)

逃离迷宫 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 14376    Accepted Submission(s): 3458 Problem Description 给定一个m × n (m行, n列)的迷宫,迷宫中有两个位置,gloria想从迷宫的一个位置走到另外一个位置,当然迷宫中有些地方是空地,gloria可以穿越,有些地方

牛汇(BFS)入金具体流程(图文指导)

牛汇开户流程:bfsforex牛汇入金教程 所谓入金,也就是充值的意思,必须充钱到平台才能进行外汇交易.首先,我们先登录bfsforex牛汇官方网站,在交易办公室功能区域下面,点击账户入金: 为您提供中国各大银行的网银支付解决方案,支持人民币支付,和信用卡入金,入金是实时到账的. 牛汇(BFS)入金具体流程(图文指导),布布扣,bubuko.com

URAL 1930 Ivan&#39;s Car(BFS)

Ivan's Car Time limit: 1.5 secondMemory limit: 64 MB The world is in danger! Awful earthquakes are detected all over the world. Houses are destroyed, rivers overflow the banks, it is almost impossible to move from one city to another. Some roads are