组合数组合数学

Posted ac-ac

tags:

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

组合数

链接:组合数

注意:溢出。

#include<bits/stdc++.h>
using namespace std;
typedef unsigned long long ll;
const ll mod = 1e18;
int main(void){
    ll n,k;
    while(cin>>n>>k){ 
        k = min(k,n-k);
        __int128 res = 1;
        int flag = 0;
        for(ll i = 1; i <= k; i++){
            res = res*(ll)(n-i+1)/(ll)i;
            if(res>mod){
                flag = 1;
                break;
            }
        }
        if(flag){
            cout<<mod<<endl;
        }else{
            cout<<(ll)res<<endl;
        }
    }
    return 0;
} 

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

组合数学入门+例题

模板组合数学

UVa 12034 Race (递推+组合数学)

模板 - 数学 - 组合数学 - 第二类斯特林数

LightOJ-1005 组合数学,组合数水题

计数 组合数学动态规划总结