AtCoder Beginner Contest 213 E - Stronger Takahashi(01bfs)
Posted zjj0624
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AtCoder Beginner Contest 213 E - Stronger Takahashi(01bfs)相关的知识,希望对你有一定的参考价值。
题意
给你一个
h
∗
w
h*w
h∗w的表格,由#和*组成,#是是障碍不可以走,高桥想从点
(
1
,
1
)
(1,1)
(1,1)走到
(
h
,
w
)
(h,w)
(h,w),高桥还有一个能力,如果前方有障碍的时候,可以选择一拳把前方
2
∗
2
2*2
2∗2的区域打开,打开以后就可以走了,问高桥最少需要几次拳击才可以到达
(
n
,
n
)
(n,n)
(n,n)
思路
一个裸的01-bfs。
代码
#include <bits/stdc++.h>
#define ll long long
#define ull unsigned long long
#define fi first
#define se second
#define pb push_back
#define me memset
const int N=1e5+10;
const int MOD = 1e9+7;
const int INF = 0x3f3f3f3f;
using namespace std;
typedef pair<int,int> PII;
typedef pair<ll,ll> PLL;
char c[510][510];
int dis[510][510];
int dx[]=0,0,-1,1;
int dy[]=1,-1,0,0;
int main()
memset(dis,INF,sizeof dis);
int h,w;
cin>>h>>w;
for(int i=1 ; i<=h ; i++)
for(int j=1 ; j<=w ; j++)
cin>>c[i][j];
queue<PII>q;
q.push(1,1,);
dis[1][1]=0;
while(!q.empty())
int x=q.front().fi;
int y=q.front().se;
q.pop();
for(int i=0 ; i<4 ; i++)
int cx=x+dx[i];
int cy=y+dy[i];
if(cx<=0||cx>h||cy<=0||cy>w) continue;
if(c[cx][cy]=='.')
if(dis[cx][cy]>dis[x][y])
dis[cx][cy]=dis[x][y];
q.push(cx,cy);
else
for(int j=-1 ; j<=1 ; j++)
for(int k=-1 ; k<=1 ; k++)
int ccx=cx+j;
int ccy=cy+k;
if(ccx<=0||ccx>h||ccy<=0||ccy>w) continue;
if(dis[ccx][ccy]>dis[x][y]+1)
dis[ccx][ccy]=dis[x][y]+1;
q.push(ccx,ccy);
cout<<dis[h][w]<<endl;
return 0;
以上是关于AtCoder Beginner Contest 213 E - Stronger Takahashi(01bfs)的主要内容,如果未能解决你的问题,请参考以下文章
AtCoder Beginner Contest 115 题解