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

uva10105-多项式系数

时间:2016-09-15 13:40:07      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

题意

  求(x1 + x2 + x3 +...+xk)n 特定一项的系数。。。

 

代码

#include<stdio.h>
typedef long long ll;
ll C(int n, int k)
{
    ll ans = 1;
    int temp = 0;
    while(temp != k) { ans *= n - temp; temp++; }
    for(int i=1; i<=k; i++) ans /= i;
    return ans;
}
int main()
{
    int ex, m;
    while(scanf("%d%d", &ex, &m) == 2) {
        int array[15];
        for(int i=0; i<m; i++) scanf("%d", &array[i]);
        ll res = 1; int now = ex;
        for(int i=0; i<m; i++) if(array[i]) {
            res *= C(now, array[i]);
            now -= array[i];
        }
        printf("%lld\n", res);
    }
    return 0;
}

 

uva10105-多项式系数

标签:

原文地址:http://www.cnblogs.com/ZengWangli/p/5874643.html

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