省选模拟:Every one will meet some difficult

请务必按顺序看。
题解1
题解2
题解3
好了可以骂我毒瘤博主了。

题解3的巧妙之处在于把多项式的次数从 s s s转移到了 m m m,但是实在是太巧了,恰好覆盖了所有题目中的已知有用条件( t ≤ 1 e 5 t\leq 1e5 t1e5不算,这个做法可以做 t ≤ 1 e 18 t\leq 1e18 t1e18的)。

给个代码吧。

#include<bits/stdc++.h>
#define LL long long
#define maxn 1005
#define mod 1000000007
using namespace std;

int K;

struct Poly{
	int a[maxn];
	Poly (){ memset(a,0,sizeof a); }
	Poly operator *(const Poly &B)const{
		Poly ret;
		for(int i=0;i<K;i++) for(int j=0;j<K-i;j++)
			ret.a[i+j] = (ret.a[i+j] + 1ll * a[i] * B.a[j]) % mod;
		return ret;
	}
};

Poly Pow(Poly b,LL k){ Poly r;r.a[0]=1;for(;k;k>>=1,b=b*b) if(k&1) r=r*b;return r; }

int main(){
	
	freopen("success.in","r",stdin);
	freopen("success.out","w",stdout);
	
	LL s;int t,n,m;
	scanf("%lld%d%d%d",&s,&t,&n,&m);
	K=m-n+2;
	Poly A,C;
	A.a[0] = A.a[1] = C.a[0] = C.a[1] = 1;
	A = Pow(A , t);
	for(int i=0;i<K-1;i++) A.a[i] = A.a[i+1];
	A = Pow(A , n);
	C = Pow(C , s-n*t);
	A = A * C;
	printf("%d\n",A.a[m-n]);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值