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

组合数【组合数学】

时间:2020-01-01 18:27:07      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:space   clu   注意   c++   center   test   合数   else   oid   

组合数

链接:组合数

注意:溢出。

#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;
} 

组合数【组合数学】

标签:space   clu   注意   c++   center   test   合数   else   oid   

原文地址:https://www.cnblogs.com/AC-AC/p/12129451.html

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