比赛 |
20150424 |
评测结果 |
AWWTTTTTTTTTTTT |
题目名称 |
牛跳房子 |
最终得分 |
6 |
用户昵称 |
Satoshi |
运行时间 |
12.410 s |
代码语言 |
C++ |
内存使用 |
6.77 MiB |
提交时间 |
2015-04-24 11:17:09 |
显示代码纯文本
#include <fstream>
#include <vector>
using namespace std;
ifstream in("hopscotch.in");
ofstream out("hopscotch.out");
long long f[751][751]={0};
int a[751][751]={0};
int m,n,k,c;
long long ans=0;
int main()
{
int i,j,k,l;
in>>m>>n>>c;
for(i=1;i<=m;i++)
{
for(j=1;j<=n;j++)
{
in>>a[i][j];
}
}
f[1][1]=1;
for(i=1;i<=m;i++)
{
for(j=1;j<=n;j++)
{
for(k=1;k<=i-1;k++)
{
for(l=1;l<=j-1;l++)
{
if(a[i][j]!=a[k][l])f[i][j]+=f[k][l];
}
}
}
}
out<<f[m][n]%1000000007<<endl;
return 0;
}