记录编号 426439 评测结果 AAAAAAAAAA
题目名称 [NOIP 2008]传球游戏 最终得分 100
用户昵称 GravatarJustWB 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2017-07-17 19:15:31 内存使用 0.29 MiB
显示代码纯文本
#include<cstdio>
#include<cctype>
using namespace std;
inline int get();
int n,m;
int N[31][31];
int main()
{
	freopen("ballg.in","r",stdin);
	freopen("ballg.out","w",stdout);
	n=get();m=get();
	N[0][1]=1;
	for(int i=1;i<=m;i++)
	{
		for(int j=1;j<=n;j++)
		{
			if(j==1)N[i][j]=N[i-1][n]+N[i-1][j+1];
			else if(j==n)N[i][j]=N[i-1][1]+N[i-1][j-1];
			else N[i][j]=N[i-1][j+1]+N[i-1][j-1];
		}
	}
	printf("%d",N[m][1]);
	return 0;
}
inline int get()
{
	int t=0,jud=1;char c=getchar();
	while(!isdigit(c))
	{
		if(c=='-')jud=-1;
		c=getchar();
	}
	while(isdigit(c))
	{
		t=(t<<3)+(t<<1)+c-'0';
		c=getchar();
	}
	return t*jud;
}