比赛 20150424 评测结果 AAATTTTTTTTTTTT
题目名称 牛跳房子 最终得分 20
用户昵称 mikumikumi 运行时间 12.582 s
代码语言 C++ 内存使用 5.98 MiB
提交时间 2015-04-24 11:45:42
显示代码纯文本
#include<cstdio>
#include<deque>
using namespace std;
typedef long long LL;
int R,C,K,mp[760][760]={0},mod=1000000007;
LL dp[760][760]={0};
int main()
{
	freopen("hopscotch.in","r",stdin);
	freopen("hopscotch.out","w",stdout);
	scanf("%d%d%d",&R,&C,&K);
	for(int i=1;i<=R;i++)
		for(int j=1;j<=C;j++)
		{
			scanf("%d",&mp[i][j]);
		}
	dp[1][1]=1;
	for(int i=2;i<=R;i++)
		for(int j=2;j<=C;j++)
			for(int k=1;k<i;k++)
				for(int t=1;t<j;t++)
				{
					if(mp[k][t]!=mp[i][j])
						dp[i][j]=(dp[i][j]+dp[k][t])%mod;
				}
	printf("%d",dp[R][C]);
	return 0;
}