codeforces 793B - Igor and his way to work(dfs、bfs)
题目链接: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)的更多相关文章
- 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 ...
- 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 ...
- Codeforces 374 C. Travelling Salesman and Special Numbers (dfs、记忆化搜索)
题目链接:Travelling Salesman and Special Numbers 题意: 给了一个n×m的图,图里面有'N','I','M','A'四种字符.问图中能构成NIMA这种序列最大个 ...
- codeforces793 B. Igor and his way to work (dfs)
题目链接:codeforces793 B. Igor and his way to work (dfs) 求从起点到终点转方向不超过两次是否有解,,好水啊,感觉自己代码好搓.. #include< ...
- 【codeforces 793B】Igor and his way to work
[题目链接]:http://codeforces.com/contest/793/problem/B [题意] 给一个n*m大小的方格; 有一些方格可以走,一些不能走; 然后问你从起点到终点,能不能在 ...
- codeforces 598D Igor In the Museum
题目链接:http://codeforces.com/problemset/problem/598/D 题目分类:dfs 题目分析:处理的时候一次处理一片而不是一个,不然会超时 代码: #includ ...
- Codeforces 747F Igor and Interesting Numbers DP 组合数
题意:给你一个数n和t,问字母出现次数不超过t,第n小的16进制数是多少. 思路:容易联想到数位DP, 然而并不是...我们需要知道有多少位,在知道有多少位之后,用试填法找出答案.我们设dp[i][j ...
- 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 ...
- 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 ...
随机推荐
- 【亲测有效】运行docker ps 出现Got permission denied问题的解决方案
问题描述 今天在运行 docker ps 命令的时候出现如下问题: Got permission denied while trying to connect to the Docker daemon ...
- Openstack架构概念图-简单汇总
OpenStack是一个云平台管理的项目,它不是一个软件.这个项目由几个主要的组件组合起来完成一些具体的工作.想要了解openstack,第一步我们可以观察他的概念图: 针对上图的翻译+解释: 上图主 ...
- 初学习Qt的一些感悟
最近用Qt写了个人项目,有如下心得(可能有不准确): Qt尽管没有扩展C++语法,但是有额外编译链,每个Q_OBJECT类编译的时候会用moc工具生成另一个meta C++类,之后就是标准C++编译流 ...
- 思甜雅---关于qq的NABCD的模型分析
个人连接:http://www.cnblogs.com/xiaoliulang/ 关于QQ的NABCD模型 N--Need 随着电脑的普及,人们在网络上进行交流的时间越来越多,由于现有的交流工具还不是 ...
- 关于摄影O2O的前期准备
更新内容暂时在这位同学的博客:http://www.cnblogs.com/ys1101/
- Beta阶段敏捷冲刺一
一.举行站立式会议 1.当天站立式会议照片一张 2.团队成员报告 林楚虹 (1) 昨天已完成的工作:查找连接数据库有关资料,请教在上一轮已经连接成功的同学 (2) 今天计划完成的工作:连接上数据库 ( ...
- Spring注解 开发
- [转帖]什么是Asp.net Core?和 .net core有什么区别?
什么是Asp.net Core?和 .net core有什么区别? https://www.cnblogs.com/itzhangxp/p/8322364.html 知道微软开始用 kestrel了 ...
- Linux 文件系统概览
本文导航 -定义07% -文件系统的基本功能12% -目录结构26% -Linux 统一目录结构50% -文件系统类型74% -挂载81% -结论90% -下个月92% 本文旨在高屋建瓴地来讨论 ...
- 判断Excel版本信息
可以通过获取application对应的Version属性获取当前打开的Excel的版本信息(Application.Version).