首页 > 代码库 > (2016弱校联盟十一专场10.3) B.Help the Princess!
(2016弱校联盟十一专场10.3) B.Help the Princess!
题目链接
宽搜一下就行。
#include <iostream> #include<cstdio> #include<cstring> #include<queue> using namespace std; int n,m; char str[209][209]; int to[4][2]={1,0,-1,0,0,1,0,-1}; bool mp[209][209]; bool check(int x,int y) { if(x<0||x>=n||y<0||y>=m)return 1; if(str[x][y]==‘#‘||mp[x][y]==1)return 1; return 0; } int prx,pry; struct node { int x,y,time; }; bool bfs(int posx,int posy) { int pt=-1,st=-1; queue<node>Q; node a,next; mp[posx][posy]=1; a.x=posx,a.y=posy,a.time=0; Q.push(a); while(!Q.empty()) { a=Q.front(); Q.pop(); if(st==-1&&str[a.x][a.y]==‘$‘) { st = a.time+1; } if(str[a.x][a.y]==‘@‘&&pt==-1) { pt = a.time+1; } if(pt!=-1&&st!=-1) { if(pt>=st) return 0; else return 1; } for(int i=0;i<4;i++) { next=a; next.x+=to[i][0]; next.y+=to[i][1]; if(check(next.x,next.y))continue; next.time=a.time+1; mp[next.x][next.y]=1; Q.push(next); } } if(pt!=-1) return 1; else return 0; } int main() { // freopen("cin.txt","r",stdin); while(~scanf("%d%d",&n,&m)) { int posx,posy; memset(mp,0,sizeof(mp)); for(int i=0;i<n;i++) { scanf("%s",str[i]); for(int j=0;j<m;j++) if(str[i][j]==‘%‘) { posx=i; posy=j; } } if(bfs(posx,posy))puts("Yes"); else puts("No"); } return 0; }
(2016弱校联盟十一专场10.3) B.Help the Princess!
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。