首页 > 代码库 > uva10105-多项式系数
uva10105-多项式系数
题意
求(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-多项式系数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。