[USACO07OCT]障碍路线Obstacle Course

时间:2022-09-26 10:44:08

题目描述

Consider an N x N (1 <= N <= 100) square field composed of 1

by 1 tiles. Some of these tiles are impassible by cows and are marked with an 'x' in this 5 by 5 field that is challenging to navigate:

. . B x .
. x x A .
. . . x .
. x . . .
. . x . .

Bessie finds herself in one such field at location A and wants to move to location B in order to lick the salt block there. Slow, lumbering creatures like cows do not like to turn and, of course, may only move parallel to the edges of the square field. For a given field, determine the minimum number of ninety degree turns in any path from A to B. The path may begin and end with Bessie facing in any direction. Bessie knows she can get to the salt lick.

N*N(1<=N<=100)方格中,’x’表示不能行走的格子,’.’表示可以行走的格子。卡门很胖,故而不好转弯。现在要从A点走到B点,请问最少要转90度弯几次?

输入输出格式

输入格式:

第一行一个整数N,下面N行,每行N个字符,只出现字符:’.’,’x’,’A’,’B’,表示上面所说的矩阵格子,每个字符后有一个空格。

【数据规模】

2<=N<=100

输出格式:

一个整数:最少转弯次数。如果不能到达,输出-1。

输入输出样例

输入样例#1:
3
. x A
. . .
B x .
输出样例#1:
2

说明

【注释】

只可以上下左右四个方向行走,并且不能走出这些格子之外。开始和结束时的方向可以任意。

思路:BFS

代码实现:

 #include<cstdio>
#include<iostream>
using namespace std;
int n,sx,sy,tx,ty;
int nx,ny,np,ns,fx,fy,fp,fs;
int cx[]={,,,-};
int cy[]={,,-,};
bool v[][][],map[][];
char ch;
int head,tail;
struct bfsw{int x,y,p,s;}q[];
int main(){
scanf("%d",&n);
for(int i=;i<=n;i++)
for(int j=;j<=n;j++){
cin>>ch;
if(ch=='x') map[i][j]=;
if(ch=='A') sx=i,sy=j;
if(ch=='B') tx=i,ty=j;
}
for(int i=;i<;i++){
q[head++]=(bfsw){sx,sy,i,};
v[sx][sy][i]=;
}
while(head>tail){
nx=q[tail].x,ny=q[tail].y,np=q[tail].p,ns=q[tail++].s;
for(int i=;i<;i++){
fp=(np++*i)%;
if(!v[nx][ny][fp]){
q[head++]=(bfsw){nx,ny,fp,ns+};
v[nx][ny][fp]=;
}
}
fp=np,fx=nx+cx[fp],fy=ny+cy[fp];
while(fx>&&fy>&&fx<=n&&fy<=n&&!map[fx][fy]){
if(fx==tx&&fy==ty){
printf("%d\n",ns);
return ;
}
if(!v[fx][fy][fp]) q[head++]=(bfsw){fx,fy,fp,ns};
fx+=cx[fp],fy+=cy[fp];
}
}
printf("-1\n");
return ;
}

好歹是道犇站的题,给点面子吧。

题目来源:洛谷

[USACO07OCT]障碍路线Obstacle Course的更多相关文章

  1. bzoj1644 &sol; P1649 &lbrack;USACO07OCT&rsqb;障碍路线Obstacle Course

    P1649 [USACO07OCT]障碍路线Obstacle Course bfs 直接上个bfs 注意luogu的题目和bzoj有不同(bzoj保证有解,还有输入格式不同). #include&lt ...

  2. 洛谷 P1649 &lbrack;USACO07OCT&rsqb;障碍路线Obstacle Course

    P1649 [USACO07OCT]障碍路线Obstacle Course 题目描述 Consider an N x N (1 <= N <= 100) square field comp ...

  3. Luogu P1649 &lbrack;USACO07OCT&rsqb;障碍路线Obstacle Course

    题目描述 Consider an N x N (1 <= N <= 100) square field composed of 1 by 1 tiles. Some of these ti ...

  4. P1649 &lbrack;USACO07OCT&rsqb;障碍路线Obstacle Course

    题目描述 Consider an N x N (1 <= N <= 100) square field composed of 1 by 1 tiles. Some of these ti ...

  5. 洛谷P1649 【&lbrack;USACO07OCT&rsqb;障碍路线Obstacle Course】

    题目描述 Consider an N x N (1 <= N <= 100) square field composed of 1 by 1 tiles. Some of these ti ...

  6. 障碍路线Obstacle Course

    P1649 [USACO07OCT]障碍路线Obstacle Course 裸的dfs,今天学了一个新招,就是在过程中进行最优性减枝. #include<bits/stdc++.h> us ...

  7. &lbrack;USACO07OCT&rsqb;障碍路线 &amp&semi; yzoj P1130 拐弯 题解

    题意 给出n* n 的图,A为起点,B为终点,* 为障碍,.可以行走,问最少需要拐90度的弯多少次,无法到达输出-1. 解析 思路:构造N * M * 4个点,即将原图的每个点分裂成4个点.其中点(i ...

  8. &lbrack;洛谷1649&rsqb;障碍路线&lt&semi;BFS&gt&semi;

    题目链接:https://www.luogu.org/problem/show?pid=1649 历经千辛万苦,我总算是把这个水题AC了,现在心里总觉得一万只*在奔腾: 这是一道很明显的BFS,然 ...

  9. UVA 1600 Patrol Robot(机器人穿越障碍最短路线BFS)

    UVA 1600 Patrol Robot   Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu   ...

随机推荐

  1. configure JAAS for jboss 7&period;1 and mysql--reference

    Hello all, In this tutorial we are going to configure JAAS for jboss 7.1 and mysql for Form based au ...

  2. poj 2195Going Home

    http://poj.org/problem?id=2195 #include<cstdio> #include<cstring> #include<cmath> ...

  3. 【UOJ UNR &num;1】争夺圣杯

    来自FallDream的博客,未经允许,请勿转载,谢谢. 传送门 考虑直接对每个数字,统计它会产生的贡献. 单调栈求出每个数字左边第一个大等于他的数,右边第一个大于他的 (注意只能有一边取等) 假设左 ...

  4. Java中的IO流总结

    Java中的IO流总结 1. 流的继承关系,以及字节流和字符流. 2. 节点流FileOutputStream和FileInputStream和处理流BufferedInputStream和Buffe ...

  5. pip list 和 pip freeze

    https://blog.csdn.net/vitaminc4/article/details/76576956 Pip’s documentation statespip     descripti ...

  6. 简单理解JVM与static&lbrace;&rcub;

    参考如下 http://www.cnblogs.com/lao-liang/p/5110710.html http://blog.csdn.net/newjerryj/article/details/ ...

  7. Linux网络编程--sendfile零拷贝高效率发送文件

    from http://blog.csdn.net/hnlyyk/article/details/50856268 Linux系统使用man sendfile,查看sendfile原型如下: #inc ...

  8. ldap 测试表设计

    1. ldap_oc_mappings    存储objeckClass 信息 表结构:  Column Desc. id objectClass的唯一标识 name objectClass的名称 k ...

  9. stardog graphql 简单操作

    预备环境: 下载stardog 软件包 graphql 查询地址 创建一个简单数据库 ./stardog-admin db create -nstarwars graphql 查询方式 http 地址 ...

  10. 从PRISM开始学WPF(八)导航Navigation-更新至Prism7&period;1

    原文:从PRISM开始学WPF(八)导航Navigation-更新至Prism7.1 0x6Navigation [7.1updated] Navigation 在wpf中并没有变化 Basic Na ...