组合数模板HDU 6114 Chess

Posted shulin~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了组合数模板HDU 6114 Chess相关的知识,希望对你有一定的参考价值。

http://acm.hdu.edu.cn/showproblem.php?pid=6114

【思路】

就是求C(m,n)

【板】

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<cmath>

using namespace std;
typedef long long ll;
const int maxn=1e3+2;
int n,m;
ll C[maxn][maxn];
const ll mod=1e9+7;
void init()
{
    C[0][0]=1;
    for (int i=0;i<maxn;i++)
    {
        C[i][0]=1;
        for (int j=1;j<=i;j++)
        {
            C[i][j]=(C[i-1][j-1]+C[i-1][j])%mod;
        }
    }
} 
int main()
{
    init();    
    int T;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d%d",&n,&m);
        if(n>m) swap(n,m);
        ll ans=C[m][n];
        cout<<ans<<endl; 
    }
    return 0;
}

 

以上是关于组合数模板HDU 6114 Chess的主要内容,如果未能解决你的问题,请参考以下文章

HDU 6114 Chess 组合数(2017"百度之星"程序设计大赛 - 初赛(B))

百度之星2017 HDU 6114 Chess 组合数学

HDU 5794:A Simple Chess(Lucas + DP)

HDU-6114

百度之星初赛B轮 hdu 6114 6118 6119

hdu 6114 百度之星复赛B T1