hdu 6333 Harvest of Apples

#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
const int maxn=1e5+10;
const int block=1e3+5;
typedef long long LL;
const int mod=1e9+7;
LL inv[maxn],sum[block][maxn],c[block][block];
LL pows(LL a,int b)
{
	LL res=1;
	while(b)
	{
		if(b&1)res=res*a%mod;
		a=a*a%mod;
		b/=2;
	}
	return res%mod;
}
void init()
{
	for(int i=1;i<maxn;i++)
	inv[i]=pows(i,mod-2);

	for(int i=0;i<=100;i++)
	{
		LL pre=1;
		sum[i][0]=1;
		int cur=i*1000;
		for(int j=1;j<=1e5;j++)
		{
			if(j>cur)
			sum[i][j]=sum[i][j-1];
			else
			{
				pre=(pre*(cur-j+1)%mod)*inv[j]%mod;
				sum[i][j]=(sum[i][j-1]+pre)%mod;
			}	
		}
	}
	for(int i=0;i<=1000;i++)
	{
		c[i][0]=c[i][i]=1;
		for(int j=1;j<i;j++)
		c[i][j]=(c[i-1][j-1]+c[i-1][j])%mod;
	}
}
int main()
{
	int T;
	scanf("%d",&T);
	init();
	while(T--)
	{
		int n,m;
		scanf("%d%d",&n,&m);
		int cur=n/1000;
		int t=n%1000;
		LL ans=0;
		int cnt=0;
		for(int i=m;i>=0;i--)
		{
			LL tmp1=c[t][cnt]*sum[cur][i]%mod;
			ans=(ans+tmp1)%mod;
			cnt++;
			if(cnt>t)
			break;
		}
		printf("%lld\n",ans);
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

长沙橘子猫

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值