• Pendant 题解(斯特兰数+矩阵快速幂)


    题目链接

    题目思路

    其实本题就是第二类特兰数的式子

    (dp[i][j]=dp[i-1][j]*(i-1)+dp[i][j-1]*(k-j+1);)

    但是(n)太大,所以使用矩阵快速幂递推

    然后再对所有矩阵求和即可

    代码

    #include<set>
    #include<map>
    #include<queue>
    #include<stack>
    #include<cmath>
    #include<cstdio>
    #include<vector>
    #include<string>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    #define fi first
    #define se second
    #define debug cout<<"I AM HERE"<<endl;
    using namespace std;
    typedef long long ll;
    const int maxn=31,inf=0x3f3f3f3f,mod=1234567891;
    const double eps=1e-6;
    int n,k;
    struct matrix{
        ll a[maxn][maxn];
    }base,basetemp,ans,zero;
    matrix mul(matrix a,matrix b){
        matrix temp;
        memset(temp.a,0,sizeof(temp.a)); //一定1要清空
        for(int i=0;i<=n;i++){
            for(int j=0;j<=n;j++){
                for(int k=0;k<=n;k++){
                    temp.a[i][k]+=(a.a[i][j])*(b.a[j][k]);
                    temp.a[i][k]%=mod;
                }
            }
        }
        return temp;
    }
    matrix add(matrix a,matrix b){
        matrix temp;
        memset(temp.a,0,sizeof(temp.a)); //一定1要清空
        for(int i=0;i<=n;i++){
            for(int j=0;j<=n;j++){
                temp.a[i][j]=(a.a[i][j]+b.a[i][j])%mod;
            }
        }
        return temp;
    }
    matrix qpow(ll n,ll b){
        for(int i=0;i<=n;i++){
            for(int j=0;j<=n;j++){
                ans.a[i][j]=(i==j);
                base.a[i][j]=basetemp.a[i][j];
            }
        }
        while(b){
            if(b&1){
                ans=mul(ans,base);
            }
            base=mul(base,base);
            b=b>>1;
        }
        return ans;
    }
    matrix dfs(int x){
        if(x==0){
            return zero;
        }
        if(x%2==1){
            matrix temp1=qpow(n,x);
            x--;
            matrix temp2=dfs(x);
            matrix tempsum=add(temp1,temp2);
            return tempsum;
        }else{
            matrix temp1=qpow(n,x/2);
            for(int i=0;i<=n;i++){
                temp1.a[i][i]=(temp1.a[i][i]+1)%mod;
            }
            matrix temp2=dfs(x/2);
            matrix tempsum=mul(temp1,temp2);
            return tempsum;
        }
    }
    signed main(){
        // dp[i][j]=dp[i-1][j]*(i-1)+dp[i][j-1]*(k-j+1);
        int _;scanf("%d",&_);
        while(_--){
            scanf("%d%d",&k,&n);
            for(int i=1;i<=n;i++){
                basetemp.a[i][i]=i;
                basetemp.a[i-1][i]=n-i+1;
            }
            matrix pr=dfs(k);
            printf("%lld
    ",pr.a[0][n]);
        }
        return 0;
    }
    
    
    不摆烂了,写题
  • 相关阅读:
    学过C#之后,对javascript数组容易犯的错误
    关于最优种植区评价问题
    JavaScript全局变量与局部变量
    ArcGIS API for Javascript 图层切换渐变效果实现
    Motan在服务provider端用于处理request的线程池
    转:Log4j 日志体系结构
    zookeeper的开机自启动
    maven的多模块项目搭建
    scala中json与对象的转换
    社区帖子全文搜索实战(基于ElasticSearch)
  • 原文地址:https://www.cnblogs.com/hunxuewangzi/p/15181897.html
Copyright © 2020-2023  润新知