nowcoder16543 求值2

该博客通过链接提供了一道数论问题,并利用生成函数的数学方法进行题解。作者提出,将两个(1+x)^n相乘,然后找到n次项系数,可以通过对多项式求n次导数并在x=0处求值来获得答案。
摘要由CSDN通过智能技术生成

链接

点击跳转

题解

用生成函数的思想来解决本题就挺好

考虑

( 1 + x ) n = C n 0 x 0 + C n 1 x 1 + C n 2 x 2 + … (1+x)^n = C_n^0 x^0 + C_n^1 x^1 + C_n^2 x^2+\dots (1+x)n=Cn0x0+Cn1x1+Cn2x2+

考虑到我们想要的形式,不妨试一试两个上式相乘

( 1 + x ) n ( 1 + x ) n = ( C n 0 x 0 + C n 1 x 1 + C n 2 x 2 + …   ) ( C n 0 x 0 + C n 1 x 1 + C n 2 x 2 + …   ) (1+x)^n (1+x)^n = ( C_n^0 x^0 + C_n^1 x^1 + C_n^2 x^2+\dots )( C_n^0 x^0 + C_n^1 x^1 + C_n^2 x^2+\dots ) (1+x)n(1+x)n=(Cn0x0+Cn1x1+Cn2x2+)(Cn0x0+Cn1x1+Cn2x2+)

我们想要的是 ∑ C n i C n i = ∑ C n i C n n − i \sum C_n^i C_n^i = \sum C_n^i C_n^{n-i} CniCni=CniCnni,那这个东西不就是上面多项式之积的 n n n次项吗。

知道了我们要求的东西是 n n n次项的系数,接下来可以借鉴求留数的方法,对多项式求 n n n次导数,再带入 x = 0 x=0 x=0,即可得到想要的东西

代码

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#define iinf 0x3f3f3f3f
#define linf (1ll<<60)
#define eps 1e-8
#define maxn 2000010
#define cl(x) memset(x,0,sizeof(x))
#define rep(_,__) for(_=1;_<=(__);_++)
#define em(x) emplace(x)
#define emb(x) emplace_back(x)
#define emf(x) emplace_front(x)
#define fi first
#define se second
#define mod 998244353ll
#define de(x) cerr<<#x<<" = "<<x<<endl
using namespace std;
using namespace __gnu_pbds;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
ll read(ll x=0)
{
    ll c, f(1);
    for(c=getchar();!isdigit(c);c=getchar())if(c=='-')f=-f;
    for(;isdigit(c);c=getchar())x=x*10+c-0x30;
    return f*x;
}
struct EasyMath
{
    ll prime[maxn];
    bool mark[maxn];
    ll fastpow(ll a, ll b, ll c)
    {
        ll t(a%c), ans(1ll);
        for(;b;b>>=1,t=t*t%c)if(b&1)ans=ans*t%c;
        return ans;
    }
    void get_prime(ll N)
    {
        ll i, j;
        for(i=2;i<=N;i++)mark[i]=false;
        *prime=0;
        for(i=2;i<=N;i++)
        {
            if(!mark[i])prime[++*prime]=i;
            for(j=1;j<=*prime and i*prime[j]<=N;j++)
            {
                mark[i*prime[j]]=true;
                if(i%prime[j]==0)break;
            }
        }
    }
}em;
ll fact[maxn], _fact[maxn], n, f[maxn], ans;
ll C(ll n, ll m)
{
    return fact[n]*_fact[m]%mod * _fact[n-m] %mod;
}
int main()
{
    ll i, j, ans=0, cnt;
    n=read();
    fact[0]=_fact[0]=1;
    rep(i,2e6)fact[i]=fact[i-1]*i%mod, _fact[i]=em.fastpow(fact[i],mod-2,mod);
    for(i=0;i<=n;i++)
    {
        ans += fact[2*i]*_fact[i]%mod*_fact[i]%mod;
        ans %= mod;
    }
    ans = (ans + mod - 1)%mod;
    printf("%lld",ans);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值