1312 Red and Black 简单 / dfs

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1312 Red and Black 简单 / dfs相关的知识,希望对你有一定的参考价值。

在这里插入图片描述
http://acm.hdu.edu.cn/showproblem.php?pid=1312

#include<cstdio>
#include<iostream>
#include<cstring>
using namespace std;
int n,m;
char a[1005][1005];
bool vis[1005][1005];
int dx[4]={-1,0,1,0};
int dy[4]={0,1,0,-1};
int startx,starty;
int ans=0;
void dfs(int x,int y)
{
	ans++;
	for(int i=0;i<4;i++)
	{
		int tempx=x+dx[i];
		int tempy=y+dy[i];
		if(tempx<0||tempx>=m||tempy<0||tempy>=n) continue;
		if(vis[tempx][tempy]) continue;
		if(a[tempx][tempy]=='#') continue;
		vis[tempx][tempy]=true;
		dfs(tempx,tempy);
	}
}
int main(void)
{
	
	while(cin>>n>>m,n!=0||m!=0)
	{
		ans=0;
		memset(vis,0,sizeof vis);
		for(int i=0;i<m;i++)
		{
			for(int j=0;j<n;j++)
			{
				cin>>a[i][j];
				if(a[i][j]=='@') startx=i,starty=j;
			}
		}
		vis[startx][starty]=true;
		dfs(startx,starty);
		cout<<ans<<endl;
	}
	return 0;
}

以上是关于1312 Red and Black 简单 / dfs的主要内容,如果未能解决你的问题,请参考以下文章

1312 Red and Black

HDU - 1312 : Red and Black

hdu1312 Red and Black

Hdoj 1312.Red and Black 题解

hdoj-1312-Red and Black

HDU1312 Red and Black