记录编号 96278 评测结果 AAAAAAAAAA
题目名称 跳马问题 最终得分 100
用户昵称 Gravatar752199526 是否通过 通过
代码语言 C++ 运行时间 0.061 s
提交时间 2014-04-11 21:20:19 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<fstream>
#include<iomanip>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<assert.h>
#include<cstring>
#include<vector>
#include<stack>
#include<queue>
#include<time.h>
using namespace std;
ifstream fin("horse.in");
ofstream fout("horse.out");
long long m,n,Count=0;
const int xx[4]={2,1,-1,-2};
const int yy[4]={1,2,2,1};
void horse(long long x,long long y)
{
	for(int k=0;k<4;k++)
	{
		long long x1=x+xx[k],y1=y+yy[k];
		//判定是否越界
		if(x1>=1&&y1<=n&&x1<=m&&y1>=1)//不越界
		{
			if(x1==m&&y1==n){Count++;}
			else horse(x1,y1);
		}
		else ;//越界
	}
}
int main()
{
	fin>>m>>n;
	horse(1,1);
	fout<<Count<<endl;
	return 0;
}