Gym - 100971J (思维+简单bfs)
2.0 s
256 MB
standard input
standard output
Vitaly works at the warehouse. The warehouse can be represented as a grid of n × m cells, each of which either is free or is occupied by a container. From every free cell it's possible to reach every other free cell by moving only through the cells sharing a side. Besides that, there are two robots in the warehouse. The robots are located in different free cells.
Vitaly wants to swap the robots. Robots can move only through free cells sharing a side, moreover, they can't be in the same cell at the same time or move through each other. Find out if the swap can be done.
The first line contains two positive integers n and m (2 ≤ n·m ≤ 200000) — the sizes of the warehouse.
Each of the next n lines contains m characters. The j-th character of the i-th line is «.» if the corresponding cell is free, «#» if there is a container on it, «1» if it's occupied by the first robot, and «2» if it's occupied by the second robot. The characters «1» and «2» appear exactly once in these lines.
Output «YES» (without quotes) if the robots can be swapped, and «NO» (without quotes) if that can't be done.
5 3 ### #1# #.# #2# ###
NO
3 5 #...# #1.2# #####
YES
题意:给你一个n*m的图,“#”为墙,“。”是可以走的路图中有两个机器人1和2,问你是否可以通过通过1,和 2 的移动使得 1 和 2 的位置互换,1和2不能同时在一个位置。
可以输出YES,不能输出NO。
思路:刚看到这道题就想到用bfs做,但是不知道怎么通过bfs来判断它是否可以使他们的位置互换。然后通过画图分析才知道只要它满足几种情况中的一种就可以了 1.1,2有一条通路,且与1,2相通的所有点(包括1,2)中有一个点的四个方向有三个不是墙就可以了。 2.1,2有两条通路
代码:
#include<cstdio>
#include<cstring>
#include<queue>
using namespace std;
struct st{
int x;
int y;
};
queue<st> q;
int x[5]={0,1,0,-1};//
int y[5]={1,0,-1,0};
char mp[200010];
int vt[200010];
int n,m,lg,lg1;
int x1,y1,x2,y2;
int check(int x,int y){//判断是否越界
if(x>0&&x<=n&&y>0&&y<=m)
return true;
return false;
}
int bfs(int x3,int y3){
int i,j;
st a,b;
a.x=x3;
a.y=y3;
q.push(a);
int sum;
vt[(x3-1)*m+y3]=1;
while(!q.empty()){
a=q.front();
q.pop();
sum=0;
//printf("%d %d ",a.x,a.y);
for(i=0;i<4;i++){
b.x=a.x+x[i];
b.y=a.y+y[i];
if(check(b.x,b.y)&&mp[(b.x-1)*m+b.y]!='#'){
sum++;//计算a这个点的四周可以走的地方的数量
if(!vt[(b.x-1)*m+b.y])
{
q.push(b);
vt[(b.x-1)*m+b.y]=1;
}
}
}
//printf("%d\n",sum);
/*3 6
#.##.#
.1..2.
#.##.#*/
if(sum>=3)
lg=1;
}
return 0;
}
int main(){ int i,j;
int sum1=0;
lg=0;
lg1=0;
scanf("%d%d",&n,&m);
for(i=1;i<=n;i++){
getchar();
char c;
for(j=1;j<=m;j++)
{
scanf("%c",&c);
if(c=='1')
x1=i,y1=j;
else if(c=='2')
x2=i,y2=j;
mp[(i-1)*m+j]=c;
}
}
for(i=0;i<4;i++)//从1点往四个方向bfs
{
if(check(x1+x[i],y1+y[i])&&(mp[(x1+x[i]-1)*m+y1+y[i]]!='#')){
sum1++;
memset(vt,0,sizeof(vt));
vt[(x1-1)*m+y1]=1;
bfs(x1+x[i],y1+y[i]);
if(vt[(x2-1)*m+y2])
lg1++;//记录每个方向的是否可以到达2,不用记录一个方向一共有几条可以到2的路,因为如果它有多条一定至少有一个点三个方向是非墙的
}
}
if(sum1>=3)
lg=1;
if((lg+lg1)>1)
printf("YES\n");
else
printf("NO\n");
return 0;
}
Gym - 100971J (思维+简单bfs)的更多相关文章
- LightOJ 1012 简单bfs,水
1.LightOJ 1012 Guilty Prince 简单bfs 2.总结:水 题意:迷宫,求有多少位置可去 #include<iostream> #include<cstr ...
- POJ3185(简单BFS,主要做测试使用)
没事做水了一道POJ的简单BFS的题目 这道题的数据范围是20,所以状态总数就是(1<<20) 第一次提交使用STL的queue,并且是在队首判断是否达到终点,达到终点就退出,超时:(其实 ...
- 【POJ 3669 Meteor Shower】简单BFS
流星雨撞击地球(平面直角坐标第一象限),问到达安全地带的最少时间. 对于每颗流星雨i,在ti时刻撞击(xi,yi)点,同时导致(xi,yi)和上下左右相邻的点在ti以后的时刻(包括t)不能再经过(被封 ...
- hdu1312 Red and Black 简单BFS
简单BFS模版题 不多说了..... 直接晒代码哦.... #include<cstdlib> #include<iostream> #include<cstdio> ...
- 逃脱 (简单BFS)
题目传送门 G逃脱 题目描述 这是mengxiang000和Tabris来到幼儿园的第四天,幼儿园老师在值班的时候突然发现幼儿园某处发生火灾,而且火势蔓延极快,老师在第一时间就发出了警报,位于幼儿园 ...
- Gym - 101572D Distinctive Character bfs 思维
题目传送门 题目大意: 给出n个01串,让你构造一个字符串,使这个字符串和这些字符串中相似程度最高 尽可能低.如果两个字符串对应位置相同,则相似程度加一. 思路: 每一个01串更改自己的一部分后,都可 ...
- Gym 100971A Treasure Island BFS 思维题
A - Treasure Island Time Limit:2000MS Memory Limit:262144KB 64bit IO Format:%I64d & %I64 ...
- Gym 101917 E 简单计算几何,I 最大流
题目链接 https://codeforces.com/gym/101917 E 题意:给定一个多边形(n个点),然后逆时针旋转A度,然后对多边形进行规约,每个点的x规约到[0,w]范围内,y规约到[ ...
- Codeforces gym 100685 F. Flood bfs
F. FloodTime Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100685/problem/F Desc ...
随机推荐
- linux权限管理之进程掩码
进程掩码 mask umask ======================================================== 文件权限管理之: 进程umask进程 新建文件.目录的 ...
- 深刻理解Web标准,对可用性、可访问性、可维护性等相关知识有实际的了解和实践经验
WEB标准不是某一个标准,而是一系列标准的集合.网页主要由三部分组成:结构(Structure).表现(Presentation)和行为(Behavior).对应的标准也分三方面:结构化标准语言主要包 ...
- android -------- Data Binding的使用 ( 六) 自定义属性
今天来说说DataBinding在自定义属性的使用 默认的android命名空间下,我们会发现并不是所有的属性都能直接通过data binding进行设置,比如margin,padding,还有自定义 ...
- atoi函数原型
一.atoi()函数的功能: 1.定义: 将字符串转换成整型数,跳过前面的空格字符,直到遇上数字或正负号才开始做转换,而再遇到非数字或字符串时('\0')结束转化,并将结果返回(返回转换后的整型数). ...
- 51nod-1181-两次筛法
1181 质数中的质数(质数筛法) 题目来源: Sgu 基准时间限制:1 秒 空间限制:131072 KB 分值: 0 难度:基础题 收藏 关注 如果一个质数,在质数列表中的编号也是质数,那么就 ...
- WDA基础九:BusinessGraphics
好像很少有人用这玩意...好难玩,好废...和ABAP的那个图一样废.... 很多报表都是用BO,BI什么做的,不仅废,而且很多BO顾问不懂代码,写出来的报表挫的要死.... WDA的网页图形报表分析 ...
- Oracle中事务处理控制用法
oracle 事物控制包括 COMMINT ROLLBACK SAVEPOINT avepoint是事务内部允许部分rollback的标志符.因为事务中对记录做了修改,我们可以在事务中创建savepo ...
- nginx开启fileinfo扩展
//实现网址 https://blog.csdn.net/m_nanle_xiaobudiu/article/details/80838424 (1) (2).make && make ...
- Ping 的TTL理解
http://www.webkaka.com/tutorial/zhanzhang/2017/061570/ 根据自己的扩展重新整理了一下,虽然不是运维,想了解一点东西就希望了解清楚. 一.含义 “T ...
- 一、ZooKeeper学习
一.什么是ZooKeeper? ZooKeeper是一个分布式应用的开源协调服务.目的就是给用户提供同步.配置管理.分组和命名等服务.是Java语言编写的,支持Java和C两种语言.通俗的讲,它就是用 ...