码迷,mamicode.com
首页 > 其他好文 > 详细

LG5239 回望京都 组合数+暴力

时间:2019-12-08 01:27:21      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:main   void   京都   href   problem   repr   合数   http   can   

问题描述

LG5239


题解

我就是个傻逼,鉴定完毕。

\(C_m^n=C_{m-1}^n+C_{m-1}^{n-1}\) 都忘了。

所以暴力求出 \(1000\) 以内的 \(C_i^j\) ,二维前缀和即可。


\(\mathrm{Code}\)

#include<bits/stdc++.h>
using namespace std;

const int maxn=1007;
const int mod=19260817;

int T,n,m;
int s[maxn][maxn];
int C[maxn][maxn];


void Init(void){
    scanf("%d",&T);
}

void Preprocess(void){
    C[1][1]=C[1][0]=1;
    for(int i=2;i<=1000;i++){
        C[i][0]=1;
        for(int j=1;j<=i;j++) C[i][j]=(C[i-1][j]+C[i-1][j-1])%mod;
    }
    for(int i=1;i<=1000;i++){
        for(int j=1;j<=1000;j++){
            s[i][j]=(s[i-1][j]+s[i][j-1]-s[i-1][j-1]+C[i][j]+mod)%mod;
        }
    }
}

void Work(void){
    Preprocess();
    while(T--){
        int n,m;
        scanf("%d%d",&n,&m);
        printf("%d\n",s[m][n]);
    }
}

int main(){
    Init();
    Work();
    return 0;
}

LG5239 回望京都 组合数+暴力

标签:main   void   京都   href   problem   repr   合数   http   can   

原文地址:https://www.cnblogs.com/liubainian/p/12003855.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!