记录编号 284435 评测结果 AAAAAAAAAA
题目名称 跳马问题 最终得分 100
用户昵称 Gravatar安呐一条小咸鱼。 是否通过 通过
代码语言 C++ 运行时间 0.039 s
提交时间 2016-07-18 14:26:42 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int dx[9]={1,1,2,2};
int dy[9]={-2,2,-1,1};
bool vis[25][25];
int n,m,tot,ex,ey;
void search(int x,int y)
{
	if(x==ex&&ey==y)
	{
		tot++;
		return;
	}
	for(int k=0;k<4;k++)
	{
		int tx=x+dx[k];
		int ty=y+dy[k];
		if(tx<1||ty<1||tx>ex||ty>ey)continue;
		search(tx,ty);
	}
}
int main()
{
	freopen("horse.in","r",stdin);
	freopen("horse.out","w",stdout);
	cin>>ey>>ex;
	search(1,1);
	cout<<tot<<endl;
	return 0;
}