poj3083 Children of the Candy Cor
Description
One popular maze-walking strategy guarantees that the visitor will eventually find the exit. Simply choose either the right or left wall, and follow it. Of course, there's no guarantee which strategy (left or right) will be better, and the path taken is seldom
the most efficient. (It also doesn't work on mazes with exits that are not on the edge; those types of mazes are not represented in this problem.)
As the proprieter of a cornfield that is about to be converted into a maze, you'd like to have a computer program that can determine the left and right-hand paths along with the shortest path so that you can figure out which layout has the best chance of confounding
visitors.
Input
layout. Walls are represented by hash marks ('#'), empty space by periods ('.'), the start by an 'S' and the exit by an 'E'.
Exactly one 'S' and one 'E' will be present in the maze, and they will always be located along one of the maze edges and never in a corner. The maze will be fully enclosed by walls ('#'), with the only openings being the 'S' and 'E'. The 'S' and 'E' will also
be separated by at least one wall ('#').
You may assume that the maze exit is always reachable from the start point.
Output
square to another is only allowed in the horizontal or vertical direction; movement along the diagonals is not allowed.
Sample Input
2
8 8
########
#......#
#.####.#
#.####.#
#.####.#
#.####.#
#...#..#
#S#E####
9 5
#########
#.#.#.#.#
S.......E
#.#.#.#.#
#########
Sample Output
37 5 5
17 17 9
这道题求最短路可以用bfs,但是求绕墙走的时间时不用搜索,因为一定只有唯一的一条路,绕墙走有优先考虑左边和右边两种情况,考虑左边的时候,如果能往左走就往做,否则再考虑能不能向前走,即按原来的方向,如果也不行,再看能不能往右走,如果三种情况都不行,就往后走,这里要开一个数组记录方向。
#include<stdio.h>
#include<string.h>
#include<math.h>
char map[45][45];
int tab[8][2]={0,0,0,1,-1,0,0,-1,1,0},dir,b[45][45];
int q[1111111][2],x3,y3,x2,y2,n,m; void bfs()
{
memset(q,0,sizeof(q));
memset(b,0,sizeof(b));
b[x2][y2]=1;
int front=1,rear=1,xx,yy,i,x,y;
q[front][0]=x2;q[front][1]=y2;
while(front<=rear){
x=q[front][0];
y=q[front][1];
if(x==x3 && y==y3)break;
front++;
for(i=1;i<=4;i++){
xx=x+tab[i][0];yy=y+tab[i][1];
if(xx>=0 && xx<m && yy>=0 && yy<n && map[xx][yy]!='#'){
map[xx][yy]='#';
b[xx][yy]=b[x][y]+1;
rear++;
q[rear][0]=xx;
q[rear][1]=yy;
}
}
}
return ;
} int main()
{
int T,i,j,num1,num2,num3,x,y,dir1,xx,yy,dir2;
scanf("%d",&T);
while(T--)
{
scanf("%d%d",&n,&m);
for(i=0;i<m;i++){
scanf("%s",map[i]);
for(j=0;j<n;j++){
if(map[i][j]=='S'){
x2=i;y2=j;
}
else if(map[i][j]=='E'){
x3=i;y3=j;
}
}
}
if(y2==1)dir=1;
else if(x2==m)dir=2;
else if(y2==n)dir=3;
else if(x2==1)dir=4;
num1=0;
memset(b,0,sizeof(b));
x=x2,y=y2,num1=1,dir1=dir;
while(1)
{
if(x==x3 && y==y3)break;
num1++;
//printf("%d %d\n",x+1,y+1);
xx=x+tab[dir1%4+1][0];
yy=y+tab[dir1%4+1][1];
if(xx>=0 && xx<m && yy>=0 && yy<n && map[xx][yy]!='#'){
x=xx;y=yy;
dir1=dir1%4+1;continue;
}
xx=x+tab[dir1][0];
yy=y+tab[dir1][1];
if(xx>=0 && xx<m && yy>=0 && yy<n && map[xx][yy]!='#'){
x=xx;y=yy;continue;
}
xx=x+tab[(dir1==1)?4:(dir1-1)][0];
yy=y+tab[(dir1==1)?4:(dir1-1)][1];
if(xx>=0 && xx<m && yy>=0 && yy<n && map[xx][yy]!='#'){
x=xx;y=yy;
dir1=(dir1==1?4:(dir1-1));continue;
}
dir1=(dir1+1)%4+1;
x=x+tab[dir1][0];
y=y+tab[dir1][1];
}
//printf("%d\n",num1);
memset(b,0,sizeof(b));
x=x2,y=y2,num2=1,dir2=dir;
while(1)
{
if(x==x3 && y==y3)break;
num2++;
//printf("%d %d\n",x+1,y+1); xx=x+tab[(dir2==1)?4:(dir2-1)][0];
yy=y+tab[(dir2==1)?4:(dir2-1)][1];
if(xx>=0 && xx<m && yy>=0 && yy<n && map[xx][yy]!='#'){
x=xx;y=yy;
dir2=(dir2==1?4:(dir2-1));continue;
}
xx=x+tab[dir2][0];
yy=y+tab[dir2][1];
if(xx>=0 && xx<m && yy>=0 && yy<n && map[xx][yy]!='#'){
x=xx;y=yy;continue;
}
xx=x+tab[dir2%4+1][0];
yy=y+tab[dir2%4+1][1];
if(xx>=0 && xx<m && yy>=0 && yy<n && map[xx][yy]!='#'){
x=xx;y=yy;
dir2=dir2%4+1;continue;
}
dir2=(dir2+1)%4+1;
x=x+tab[dir2][0];
y=y+tab[dir2][1];
}
map[x2][y2]='#';
bfs();
num3=b[x3][y3];
printf("%d %d %d\n",num1,num2,num3);
}
return 0;
}
poj3083 Children of the Candy Cor的更多相关文章
- POJ3083——Children of the Candy Corn(DFS+BFS)
Children of the Candy Corn DescriptionThe cornfield maze is a popular Halloween treat. Visitors are ...
- poj3083 Children of the Candy Corn BFS&&DFS
Children of the Candy Corn Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 11215 Acce ...
- POJ3083 Children of the Candy Corn(搜索)
题目链接. 题意: 先沿着左边的墙从 S 一直走,求到达 E 的步数. 再沿着右边的墙从 S 一直走,求到达 E 的步数. 最后求最短路. 分析: 最短路好办,关键是沿着墙走不太好想. 但只要弄懂如何 ...
- POJ3083 Children of the Candy Corn(Bfs + Dfs)
题意:给一个w*h的迷宫,其中矩阵里面 S是起点,E是终点,“#”不可走,“.”可走,而且,S.E都只会在边界并且,不会在角落,例如(0,0),输出的话,每组数据就输出三个整数,第一个整数,指的是,以 ...
- POJ-3083 Children of the Candy Corn (BFS+DFS)
Description The cornfield maze is a popular Halloween treat. Visitors are shown the entrance and mus ...
- poj3083 Children of the Candy Corn 深搜+广搜
这道题有深搜和广搜.深搜还有要求,靠左或靠右.下面以靠左为例,可以把简单分为上北,下南,左西,右东四个方向.向东就是横坐标i不变,纵坐标j加1(i与j其实就是下标).其他方向也可以这样确定.通过上一步 ...
- poj 3083 Children of the Candy Corn
点击打开链接 Children of the Candy Corn Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8288 ...
- Children of the Candy Corn 分类: POJ 2015-07-14 08:19 7人阅读 评论(0) 收藏
Children of the Candy Corn Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 10933 Acce ...
- POJ 3083 Children of the Candy Corn bfs和dfs
Children of the Candy Corn Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8102 Acc ...
随机推荐
- 搞定面试官:咱们从头到尾再说一次 Java 垃圾回收
接着前几天的两篇文章,继续解析JVM面试问题,送给年后想要跳槽的小伙伴 万万没想到,面试中,连 ClassLoader类加载器 也能问出这么多问题..... 万万没想到,JVM内存区域的面试题也可以问 ...
- Docker学习笔记之创建Ubuntu基础镜像
在创建基础镜像之前需要安装Bootstrap工具debootstrap,所以执行命令: sudo apt install debootstrap 软件安装完成后就可以使用debootstrap工具下载 ...
- mac安装Navicat Premium Mac 12 破解版
参考:https://www.cnblogs.com/lyfstorm/p/11123159.html 激活后:
- 【System】进程,线程和任务之间的区别是什么?
任务(task)是最抽象的,是一个一般性的术语,指由软件完成的一个活动.一个任务既可以是一个进程,也可以是一个线程.简而言之,它指的是一系列共同达到某一目的的操作.例如,读取数据并将数据放入内存中.这 ...
- 【RAC】10grac添加节点,详细步骤
RAC物理结构 现在的RAC环境是二个节点: dbp,dbs, 这个实验就是添加节点dbi. dbp,dbs和dbi节点的信息规划如下: 服务器主机名 dbp dbs dbi 公共IP地址(eth0) ...
- 【Oracle】想查询相关的v$视图,但是提示表或视图不存在解决办法
原因是使用的用户没有相关的查询权限导致 解决办法: grant select any dictionary to 用户; --这个权限比较大 这个权限是最低的要求,但是可以访问到v$相关视图 ...
- linux系统中set、env、export关系
set 用来显示shell变量(包括环境变量.用户变量和函数名及其定义),同时可以设置shell选项来开启调试.变量扩展.路径扩展等开关env 用来显示和设置环境变量export 用来显示和设置导出到 ...
- VB基础总结
前段时间用VB写了一个简单窗口小应用,久了不碰VB,都忘了,下面用思维导图简单总结了一些基础的东西,方便以后快速查阅.
- kaggle新手如何在平台学习大神的代码
原创:数据臭皮匠 [导读]Kaggle ,作为听说它很牛X但从未接触过的同学,可能仅仅了解这是一个参加数据挖掘比赛的网站,殊不知Kaggle也会有赛题相关的数据集, 比如我们熟知的房价预测.泰坦尼克 ...
- 基于Abp React前端的项目建立与运行——React框架分析
基于Abp React前端的项目建立与运行 目录 基于Abp React前端的项目建立与运行 1 Abp项目配置 2 运行WebApi后端项目 2.1 创建C3D数据库,并且将数据库对应链接字符串替换 ...