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

POJ 2249

时间:2014-09-27 11:20:19      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:blog   io   os   for   sp   div   c   log   amp   

简单求组合数,直接运用公式。注意C(n,k)=C(n,n-k)。

#include <iostream>
#include <cstdio>
#include <algorithm>
#define LL __int64
using namespace std;

LL myc(LL n, LL r){
	LL sum=1;
	for(LL i=1;i<=r;i++)
	sum=sum*(n+1-i)/i;
	return sum;
}

int main(){
	LL n,r;
	while(scanf("%I64d%I64d",&n,&r),n||r){
		r=r>n-r?n-r:r;
		LL res=myc(n,r);
		printf("%I64d\n",res);
	}
	return 0;
}

  

POJ 2249

标签:blog   io   os   for   sp   div   c   log   amp   

原文地址:http://www.cnblogs.com/jie-dcai/p/3995991.html

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