记录编号 126291 评测结果 AAAAAAAAAA
题目名称 冲出亚马逊之圣战前夜 最终得分 100
用户昵称 Gravatar水中音 是否通过 通过
代码语言 C++ 运行时间 0.003 s
提交时间 2014-10-11 21:46:02 内存使用 0.32 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<queue>
#include<algorithm>
using namespace std;
char c[110];
int n,i,p,zui=0;
bool pan[110][110]={0};
void dfs(int x,int y)
{
	pan[y][x]=false;zui++;
	if(x<n&&(pan[y][x+1]))dfs(x+1,y);
	if(x>1&&(pan[y][x-1]))dfs(x-1,y);
	if(y<n&&(pan[y+1][x]))dfs(x,y+1);
	if(y>1&&(pan[y-1][x]))dfs(x,y-1);
}
int main()
{
	freopen("ymxpre.in","r",stdin);
	freopen("ymxpre.out","w",stdout);
	scanf("%d\n",&n);
	for(i=1;i<=n;i++)
	{
		scanf("%s",c);
		for(p=0;p<n;p++)
		{
			if(c[p]=='0'||c[p]=='2'||c[p]=='5') pan[i][p+1]=true;
			else pan[i][p+1]=false;
		}
	}
	if(pan[1][1]) dfs(1,1);
	else
	{
		printf("no\n");
		printf("0\n");
		return 0;
	}
	if(pan[n][n])
	{
		
		printf("no\n");
		printf("%d\n",zui);
	}
	else
	{
		printf("yes\n");
		printf("%d\n",zui);
	}
	return 0;
}