题目链接:http://codeforces.com/problemset/problem/793/B

题目大意:告诉你起点和终点,要求你在只能转弯两次的情况下能不能到达终点。能就输出“YES”,不能就输出“NO”。

解题思路:这算是经典的转弯题了,接近半年没写搜索题了,,所以今天先拿这道题开刀吧。这个题关键就是“判重”,如何记录走过的点。我们可以开个三维数组,记录各个坐标各个方向上的转弯数,如果下次在到这个点这个方向,那就比较转弯数,如果这次转弯数大于等于已经记录的转弯数那就不用再找下去了,因为这次能走到的地方,上次肯定也能走到。估计一下时间复杂度大概为O(4*3n)。

dfs:

 #include<iostream>
#include<cstring>
using namespace std;
const int N=1e3+;
int m,n;
bool flag=false;
char map[N][N];
int vis[N][N][];//*关键*用来标记走过的点,记录该点朝着各方向转弯数
int d[][]={{,},{-,},{,},{,-}}; void dfs(int x,int y,int dir,int cnt){
if(x<=||x>m||y<=||y>n||cnt>)
return;
if(vis[x][y][dir]<=cnt)//如果这个位置这个方向已经走过,且用了更小的转弯数,那就不用再走这个点了
return;
if(map[x][y]=='T'){
flag=true;
return;
}
if(map[x][y]!='.'&&map[x][y]!='S')
return;
vis[x][y][dir]=cnt;
for(int i=;i<;i++) {
int x1=x+d[i][];
int y1=y+d[i][];
if(dir==-)
dfs(x1,y1,i,cnt);
else if(dir!=i)
dfs(x1,y1,i,cnt+);
else
dfs(x1,y1,i,cnt);
}
} int main(){
int index,indey;
scanf("%d %d",&m,&n);
getchar();
for(int i=;i<=m;i++){
for(int j=;j<=n;j++){
scanf("%c",&map[i][j]);
if(map[i][j]=='S'){
index=i;
indey=j;
}
}
getchar();
}
memset(vis,0x3f,sizeof(vis));//转弯数初始化为无限大
dfs(index,indey,-,);//-1表示开始位置没有方向
if(flag)
printf("YES\n");
else
printf("NO\n");
}

bfs,跟上面差不多的:

 #include<iostream>
#include<cstring>
#include<queue>
using namespace std;
const int N=1e3+;
int vis[N][N][];
int d[][]={{,},{-,},{,},{,-}};
char map[N][N];
int m,n;
bool flag=false; struct node{
int x,y,dir,cnt;
}now,t,pre;
//int num=0;
void bfs(int stax,int stay){
queue<node>q;
t.x=stax;
t.y=stay;
t.dir=-;
t.cnt=;
q.push(t);
while(!q.empty()){
pre=q.front();
q.pop();
for(int i=;i<;i++){
int x=pre.x+d[i][];
int y=pre.y+d[i][];
int cnt;
if(pre.dir==-)//判断一下上次方向和当前要走的方向的关系
cnt=;
else if(pre.dir==i)
cnt=pre.cnt;
else if(pre.dir!=i)
cnt=pre.cnt+;
if(x<=||x>m||y<=||y>n||cnt>)
continue;
if(map[x][y]=='T'){//到达终点
flag=true;
return;
}
if(map[x][y]!='S'&&map[x][y]!='.')
continue;
if(vis[x][y][i]<=cnt)//这个点这个方向已经有更优方案了
continue;
vis[x][y][i]=cnt;
now.x=x;
now.y=y;
now.dir=i;
now.cnt=cnt;
// num++;
// printf("%d\n",num);
q.push(now);
}
}
}
int main(){
int index,indey;
scanf("%d %d",&m,&n);
getchar();
for(int i=;i<=m;i++){
for(int j=;j<=n;j++){
scanf("%c",&map[i][j]);
if(map[i][j]=='S'){
index=i;
indey=j;
}
}
getchar();
}
memset(vis,0x3f,sizeof(vis));
bfs(index,indey);
if(flag)
printf("YES\n");
else
printf("NO\n");
}

codeforces 793B - Igor and his way to work(dfs、bfs)的更多相关文章

  1. codeforces 793B. Igor and his way to work

    B. Igor and his way to work time limit per test 3 seconds memory limit per test 256 megabytes input ...

  2. Codeforces Beta Round #94 div 2 C Statues dfs或者bfs

    C. Statues time limit per test 2 seconds memory limit per test 256 megabytes input standard input ou ...

  3. Codeforces 374 C. Travelling Salesman and Special Numbers (dfs、记忆化搜索)

    题目链接:Travelling Salesman and Special Numbers 题意: 给了一个n×m的图,图里面有'N','I','M','A'四种字符.问图中能构成NIMA这种序列最大个 ...

  4. codeforces793 B. Igor and his way to work (dfs)

    题目链接:codeforces793 B. Igor and his way to work (dfs) 求从起点到终点转方向不超过两次是否有解,,好水啊,感觉自己代码好搓.. #include< ...

  5. 【codeforces 793B】Igor and his way to work

    [题目链接]:http://codeforces.com/contest/793/problem/B [题意] 给一个n*m大小的方格; 有一些方格可以走,一些不能走; 然后问你从起点到终点,能不能在 ...

  6. codeforces 598D Igor In the Museum

    题目链接:http://codeforces.com/problemset/problem/598/D 题目分类:dfs 题目分析:处理的时候一次处理一片而不是一个,不然会超时 代码: #includ ...

  7. Codeforces 747F Igor and Interesting Numbers DP 组合数

    题意:给你一个数n和t,问字母出现次数不超过t,第n小的16进制数是多少. 思路:容易联想到数位DP, 然而并不是...我们需要知道有多少位,在知道有多少位之后,用试填法找出答案.我们设dp[i][j ...

  8. Codeforces Round #407 (Div. 1) B. Weird journey —— dfs + 图

    题目链接:http://codeforces.com/problemset/problem/788/B B. Weird journey time limit per test 2 seconds m ...

  9. Codeforces Round #306 (Div. 2) B. Preparing Olympiad dfs

    B. Preparing Olympiad Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/550 ...

随机推荐

  1. OpenTK教程-2绘制一个三角形(正确的方式)

    上一个教程向我们展示了如何在屏幕上画一个三角形.但是,我说过,那是一种古老的方式,即使它能够正常运行,但是现在这已经不是"正确"的方式.上篇文章中我们将几何发送到GPU的方式是所谓 ...

  2. Linux 小记 — Ubuntu 自动化配置

    前言 工欲善其事,必先利其器.经过多次的重复配置 ubuntu 开发坏境,我终于决定花点时间总结一下,并将其写成一个自动化配置脚本.服务器实例:ubuntu 16.04,技术栈:shell,pytho ...

  3. BugkuCTF sql注入

    前言 写了这么久的web题,算是把它基础部分都刷完了一遍,以下的几天将持续更新BugkuCTF WEB部分的题解,为了不影响阅读,所以每道题的题解都以单独一篇文章的形式发表,感谢大家一直以来的支持和理 ...

  4. Docker容器学习梳理 - 日常操作总结

    使用Docker已有一段时间了,今天正好有空梳理下自己平时操作Docker时的一些命令和注意细节: Docker 命令帮助 $ sudo docker Commands: attach Attach ...

  5. ResultSet集合查询字段名称(转载)

    转自:https://blog.csdn.net/song_litao/article/details/84751351 public List<String> getColumnName ...

  6. Notes of Daily Scrum Meeting(12.24)

    平安夜了,我们还在这里辛苦地赶代码,整个人都不好了... 今天的团队任务总结如下: 团队成员 今日团队工作 陈少杰 寻找大神帮助,调试网络连接 王迪 建立搜索的UI界面,把算法加入进去 金鑫 调试网络 ...

  7. .NET组件介绍系列

    一款开源免费的.NET文档操作组件DocX(.NET组件介绍之一)http://www.cnblogs.com/pengze0902/p/6122311.html 高效而稳定的企业级.NET Offi ...

  8. 如何实现基于ssh框架的投票系统的的质量属性

    如何实现基于ssh框架的投票系统的的质量属性: 项目 :网上考试系统 我做的是网上考试系统,因为标准化的考试越来越重要,而通过计算机进行标准化判卷,系统会自动判卷出成绩,组织考试的人不用组织人员打印试 ...

  9. Python学习笔记 -- 第五章

    模块 使用模块可以提高了代码的可维护性.其次,编写代码不必从零开始.当一个模块编写完毕,就可以被其他地方引用.我们在编写程序的时候,也经常引用其他模块,包括Python内置的模块和来自第三方的模块: ...

  10. 第三个Sprint ------第四天

    出题代码 package com.app.senior_calculator; import java.io.Serializable; public class Question implement ...