记录编号 |
333417 |
评测结果 |
AAAAAA |
题目名称 |
返回住所 |
最终得分 |
100 |
用户昵称 |
Go灬Fire |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.009 s |
提交时间 |
2016-10-30 18:43:56 |
内存使用 |
2.26 MiB |
显示代码纯文本
#include<cmath>
#include<cstring>
#include<cstdio>
#include<algorithm>
#include<iostream>
#include<queue>
#include<map>
#define LL long long
#define Begin freopen("backbarn.in","r",stdin);freopen("backbarn.out","w",stdout);
#define End fclose(stdin);fclose(stdout);
using namespace std;
const int maxn=1010;
const int dx[5]={0,0,1,-1};
const int dy[5]={1,-1,0,0};
char s[maxn][maxn];
bool vis[maxn][maxn];
void Init();
int n,m,K;
int ans=0;
void Dfs(int x,int y,int step){
if(step>K)return;
if(x==n && y==m){ans++;vis[x][y]=0;return;}
for(int i=0;i<4;i++){
int xx=x+dx[i],yy=y+dy[i];
if(vis[xx][yy] || xx<1 || xx>n || yy<1 || yy>m || s[xx][yy]=='T')continue;
vis[xx][yy]=1;
Dfs(xx,yy,step+1);
vis[xx][yy]=0;
}
}
int main(){
Begin;
Init();
getchar();getchar();
End;
return 0;
}
void Init(){
scanf("%d%d%d",&n,&m,&K);
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
scanf(" %c",&s[i][j]);
}
}
vis[1][1]=1;
Dfs(1,1,0);
printf("%d\n",ans);
}