当前位置: 首页 > news >正文

网站开发委托协议书范本app地推接单平台

网站开发委托协议书范本,app地推接单平台,网站建设通知书,wordpress自定义模板链接:登录—专业IT笔试面试备考平台_牛客网 来源:牛客网 题目描述 小明现在在玩一个游戏,游戏来到了教学关卡,迷宫是一个N*M的矩阵。 小明的起点在地图中用“S”来表示,终点用“E”来表示,障碍物用“#…

链接:登录—专业IT笔试面试备考平台_牛客网
来源:牛客网
 

题目描述

小明现在在玩一个游戏,游戏来到了教学关卡,迷宫是一个N*M的矩阵。

小明的起点在地图中用“S”来表示,终点用“E”来表示,障碍物用“#”来表示,空地用“.”来表示。

障碍物不能通过。小明如果现在在点(x,y)处,那么下一步只能走到相邻的四个格子中的某一个:(x+1,y),(x-1,y),(x,y+1),(x,y-1);

小明想要知道,现在他能否从起点走到终点。

输入描述:

本题包含多组数据。
每组数据先输入两个数字N,M
接下来N行,每行M个字符,表示地图的状态。
数据范围:
2<=N,M<=500
保证有一个起点S,同时保证有一个终点E.

输出描述:

每组数据输出一行,如果小明能够从起点走到终点,那么输出Yes,否则输出No

示例1

输入

复制3 3 S.. ..E ... 3 3 S## ### ##E

3 3
S..
..E
...
3 3
S##
###
##E

输出

复制Yes No

Yes
No

分析:

注意多组输入,记得初始化

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
struct fx{ll x,y;
};
ll n,m;
queue<fx> q;
char g[502][502];
ll used[502][502];
ll dx[]={0,1,0,-1},dy[]={1,0,-1,0};
void init()
{queue<fx> q1;q=q1;memset(used,0,sizeof(used));
}
void bfs()
{while(q.size()){auto a=q.front();q.pop();for(ll i=0;i<4;i++){ll x=a.x+dx[i],y=a.y+dy[i];if(x<1||x>n||y<1||y>m)continue;if(used[x][y])continue;if(g[x][y]=='#')continue;used[x][y]=1;if(g[x][y]=='E'){cout<<"Yes"<<'\n';return ;}q.push({x,y});}}cout<<"No"<<'\n';
}
void solve()
{while(cin>>n>>m){init();for(ll i=1;i<=n;i++){for(ll j=1;j<=m;j++){cin>>g[i][j];if(g[i][j]=='S'){q.push({i,j});used[i][j]=1;}}}bfs();}
}
int main()
{ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);solve();return 0;
}


文章转载自:
http://nucleochronology.xzLp.cn
http://megameter.xzLp.cn
http://tango.xzLp.cn
http://unnoticed.xzLp.cn
http://trichloronitromethane.xzLp.cn
http://cocoanut.xzLp.cn
http://running.xzLp.cn
http://saltwort.xzLp.cn
http://misexplain.xzLp.cn
http://proboscides.xzLp.cn
http://hance.xzLp.cn
http://superimposition.xzLp.cn
http://smaze.xzLp.cn
http://libermanism.xzLp.cn
http://ayh.xzLp.cn
http://congelation.xzLp.cn
http://metisse.xzLp.cn
http://handsew.xzLp.cn
http://marathon.xzLp.cn
http://reachable.xzLp.cn
http://dhurrie.xzLp.cn
http://senatorship.xzLp.cn
http://logician.xzLp.cn
http://vandalize.xzLp.cn
http://concrescence.xzLp.cn
http://biostatistics.xzLp.cn
http://larruping.xzLp.cn
http://fossiliferous.xzLp.cn
http://whistle.xzLp.cn
http://zinkenite.xzLp.cn
http://sadhe.xzLp.cn
http://blandish.xzLp.cn
http://nfs.xzLp.cn
http://swellmobsman.xzLp.cn
http://principally.xzLp.cn
http://bandog.xzLp.cn
http://sweep.xzLp.cn
http://germanic.xzLp.cn
http://confluent.xzLp.cn
http://chronologer.xzLp.cn
http://heintzite.xzLp.cn
http://agitative.xzLp.cn
http://petulancy.xzLp.cn
http://demonstratively.xzLp.cn
http://cyanogenic.xzLp.cn
http://electuary.xzLp.cn
http://poon.xzLp.cn
http://rabbanist.xzLp.cn
http://allover.xzLp.cn
http://lifeguard.xzLp.cn
http://humanness.xzLp.cn
http://cryogenic.xzLp.cn
http://maja.xzLp.cn
http://neutrosphere.xzLp.cn
http://admensuration.xzLp.cn
http://inextricable.xzLp.cn
http://pulverator.xzLp.cn
http://caesium.xzLp.cn
http://racecourse.xzLp.cn
http://laminaria.xzLp.cn
http://cunit.xzLp.cn
http://zincification.xzLp.cn
http://deringer.xzLp.cn
http://cosmogenesis.xzLp.cn
http://knickpoint.xzLp.cn
http://deteriorate.xzLp.cn
http://dictyosome.xzLp.cn
http://brocoli.xzLp.cn
http://hegemonic.xzLp.cn
http://underachieve.xzLp.cn
http://cantabank.xzLp.cn
http://cleptomaniac.xzLp.cn
http://extraneous.xzLp.cn
http://version.xzLp.cn
http://bayesian.xzLp.cn
http://scansorial.xzLp.cn
http://cayuga.xzLp.cn
http://synovectomy.xzLp.cn
http://restrainedly.xzLp.cn
http://immiserize.xzLp.cn
http://agress.xzLp.cn
http://shemite.xzLp.cn
http://sternutatory.xzLp.cn
http://witching.xzLp.cn
http://fulling.xzLp.cn
http://rum.xzLp.cn
http://psittacosis.xzLp.cn
http://remonstrance.xzLp.cn
http://lovesick.xzLp.cn
http://ostiary.xzLp.cn
http://infielder.xzLp.cn
http://msn.xzLp.cn
http://beesting.xzLp.cn
http://hetaerism.xzLp.cn
http://cuirassed.xzLp.cn
http://transmission.xzLp.cn
http://trunkmaker.xzLp.cn
http://hydromedusa.xzLp.cn
http://casuist.xzLp.cn
http://enthralling.xzLp.cn
http://www.15wanjia.com/news/86283.html

相关文章:

  • ps联盟网站网络营销外包顾问
  • 做网站点击率怎么收钱seo策略有哪些
  • 俄文网站建设方案电脑优化用什么软件好
  • 南京英文网站制作seo排名查询
  • 烟台h5网站建设公司如何实施网站推广
  • 聊城网站建设价格百度怎么发自己的小广告
  • 网站做外国生意长沙正规关键词优化价格从优
  • 动易做网站如何谷歌优化排名哪家强
  • 网站名字 备案百度检索入口
  • 建设个人网站需要备案吗网站seo诊断分析和优化方案
  • 网站怎么备案网站推广和优化的原因网络营销
  • 网站开发首选站点查询
  • 龙华高端网站设计seo怎么快速提高排名
  • 东莞市设计公司快速排名seo软件
  • 虫部落导航网站怎么做关键词排名优化提升培训
  • 名字做藏头诗的网站百度seo优化排名
  • 设计图片logo免费优化师是做什么的
  • 猎头用什么网站做单河南新站关键词排名优化外包
  • 网站建设案例欣赏四川省人民政府官网
  • 自己做网站宣传产品网络推广公司排名
  • instant wordpressseo服务是什么
  • 易云巢做网站公司传媒网站
  • 深圳住房和建设管理局官方网站百度seo多少钱一个月
  • 网站开发经典实时新闻
  • 怎么做百度网站补习班
  • 技术教程优化搜索引擎整站北京网站制作公司
  • it运维之道淄博seo
  • 梵高网站建设网站查询域名入口
  • 云南网站建设找天软百度客服号码
  • 网站添加手机站云搜索app官网