Treasure Island CodeForces - 1214D(dfs)

All of us love treasures, right? That’s why young Vasya is heading for a Treasure Island.

Treasure Island may be represented as a rectangular table n×mn×m which is surrounded by the ocean. Let us number rows of the field with consecutive integers from 11 to nn from top to bottom and columns with consecutive integers from 11 to mm from left to right. Denote the cell in rr-th row and cc-th column as (r,c)(r,c). Some of the island cells contain impassable forests, and some cells are free and passable. Treasure is hidden in cell (n,m)(n,m).

Vasya got off the ship in cell (1,1)(1,1). Now he wants to reach the treasure. He is hurrying up, so he can move only from cell to the cell in next row (downwards) or next column (rightwards), i.e. from cell (x,y)(x,y) he can move only to cells (x+1,y)(x+1,y) and (x,y+1)(x,y+1). Of course Vasya can’t move through cells with impassable forests.

Evil Witch is aware of Vasya’s journey and she is going to prevent him from reaching the treasure. Before Vasya’s first move she is able to grow using her evil magic impassable forests in previously free cells. Witch is able to grow a forest in any number of any free cells except cells (1,1)(1,1) where Vasya got off his ship and (n,m)(n,m) where the treasure is hidden.

Help Evil Witch by finding out the minimum number of cells she has to turn into impassable forests so that Vasya is no longer able to reach the treasure.

Input
First line of input contains two positive integers nn, mm (3≤n⋅m≤10000003≤n⋅m≤1000000), sizes of the island.

Following nn lines contains strings sisi of length mm describing the island, jj-th character of string sisi equals “#” if cell (i,j)(i,j) contains an impassable forest and “.” if the cell is free and passable. Let us remind you that Vasya gets of his ship at the cell (1,1)(1,1), i.e. the first cell of the first row, and he wants to reach cell (n,m)(n,m), i.e. the last cell of the last row.

It’s guaranteed, that cells (1,1)(1,1) and (n,m)(n,m) are empty.

Output
Print the only integer kk, which is the minimum number of cells Evil Witch has to turn into impassable forest in order to prevent Vasya from reaching the treasure.

Examples
Input
2 2


Output
2
Input
4 4

#.#.

.#…
Output
1
Input
3 4

.##.

Output
2
Note
The following picture illustrates the island in the third example. Blue arrows show possible paths Vasya may use to go from (1,1)(1,1) to (n,m)(n,m). Red illustrates one possible set of cells for the Witch to turn into impassable forest to make Vasya’s trip from (1,1)(1,1) to (n,m)(n,m) impossible.
在这里插入图片描述
题意:这个人要从(1,1)到(n,m),另一个人要阻止他,问最少种几棵树才能阻止他到达(n,m)。
思路:由于这个人只能走两个方向,只要把这两个方向堵住就行。所以答案只能是0,1,2。我们枚举从(1,1)开始的那两条路。看看有几条可以到达(n,m)。
代码如下:

#include<bits/stdc++.h>
#define ll long long
using namespace std;

const int maxx=1e6+100;
int d[][2]={{0,1},{1,0}}; 
string s[maxx];
vector<int> vis[maxx];
int n,m;

inline void dfs(int x,int y,int &flag)
{
	if(x>=n||y>=m||s[x][y]=='#'||flag) return ;
	if(x==n-1&&y==m-1)
	{
		flag=1;
		return ;
	}
	for(int i=0;i<2;i++)
	{
		int tx=x+d[i][0];
		int ty=y+d[i][1];
		if(tx==n-1&&ty==m-1) 
		{
			flag=1;
			return ;
		}
		if(tx>=n||ty>=m||vis[tx][ty]==1) continue;
		vis[tx][ty]=1;//走过的点要标记,否则会出错。
		dfs(tx,ty,flag);
		if(flag) return ;
	}
}
int main()
{
	scanf("%d%d",&n,&m);
	for(int i=0;i<n;i++) cin>>(s[i]);
	for(int i=0;i<n;i++)
	{
		for(int j=0;j<m;j++) vis[i].push_back(0);//起始把所有的点都设置为0
	}
	int flag1=0,flag2=0;
	dfs(0,1,flag1);
	dfs(1,0,flag2);
	cout<<flag1+flag2<<endl;
}

努力加油a啊,(o)/~

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

starlet_kiss

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值