The binomial coefficient C(m, n) is defined as C(m, n) = m! (m − n)! n! Given four natural numbers p, q, r, and s, compute the the result of dividing C(p, q) by C(r, s). Input Input consists of a sequence of lines. Each line contains four non-negative integer numbers giving values for p, q, r, and s, respectively, separated by a single space. All the numbers will be smaller than 10,000 with p ≥ q and r ≥ s. Output For each line of input, print a single line containing a real number with 5 digits of precision in the fraction, giving the number as described above. You may assume the result is not greater than 100,000,000.

Sample Input

10 5 14 9 93 45 84 59 145 95 143 92 995 487 996 488 2000 1000 1999 999 9998 4999 9996 4998

Sample Outpu

t 0.12587 505606.46055 1.28223 0.48996 2.00000 3.99960

唯一分解定理应用

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<sstream>
#include<algorithm>
#include<queue>
#include<deque>
#include<iomanip>
#include<vector>
#include<cmath>
#include<map>
#include<stack>
#include<set>
#include<memory>
#include<list>
#include<string>
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
#define MAXN 10009
#define L 31
#define INF 1000000009
#define eps 0.00000001
/*
唯一分解定理 应用
*/
int prime[MAXN], e[MAXN];
void getprime()
{
memset(prime, false, sizeof(prime));
for (int i = ; i <= MAXN; i++)
{
if (!prime[i])
prime[++prime[]] = i;
for (int j = ; j <= prime[] && prime[j] <= MAXN / i; j++)
{
prime[prime[j] * i] = ;
if (i%prime[j] == ) break;
}
}
}
void add_interger(int n, int d)
{
for (int i = ; i <= prime[]; i++)
{
while (n%prime[i] == )
{
n /= prime[i];
e[i] += d;
}
if (n == ) break;
}
}
void add_factorial(int n, int d)
{
for (int i = ; i <= n; i++)
add_interger(i, d);
}
int main()
{
getprime();
int p, q, r, s;
while (cin >> p >> q >> r >> s)
{
memset(e, , sizeof(e));
add_factorial(p, );
add_factorial(q, -);
add_factorial(p - q, -);
add_factorial(r, -);
add_factorial(s, );
add_factorial(r - s, );
double ans = ;
for (int i = ; i <= prime[]; i++)
ans *= pow(prime[i], e[i]);
printf("%.5lf\n", ans);
}
return ;
}

最新文章

  1. SQL 将2张不相关的表拼接成2列,批量更新至另一张表
  2. linux 查找文件的命令
  3. PHP 通过设置P3P头来实现跨域访问COOKIE
  4. 配置lamp中的apache
  5. CPU占用率高分析方法步骤[转载]
  6. (转)OS X Mountain Lion 系统配置 Apache+Mysql+PHP 详细教程
  7. Swift - 使用EventKit获取系统日历事件,添加事件
  8. 查询出各个学科的前3名的同学信息的Sql
  9. Java中instanceof关键字的用法
  10. Android Studio使用过程中遇到的错误
  11. c# String ,String[] 和 List&lt;String&gt;之间的转换
  12. selenium之chrome驱动版本
  13. HTML5代码段
  14. 【NOI2019模拟】搬砖
  15. js 暂时存储 sessionStorge
  16. ABP Xunit单元测试 第五篇
  17. Java OOM 常见情况
  18. 收藏清单: python测试数据生成及代码扫描最全工具列表
  19. 关闭或开启memory_target
  20. stl源码剖析 详细学习笔记 配接器

热门文章

  1. nginx+thinkPhp配置虚拟主机和伪静态规则重写
  2. centos 扩展lrzsz通过xshell 下载安装文件
  3. ROS-URDF仿真
  4. C# 堆VS栈 值类型VS引用类型
  5. datagrid上面的查询按钮设置了,但是分页工具栏不显示
  6. 安装好Pycharm后如何配置Python解释器简易教程
  7. CAD如何直接打印,不出现打印对话框?
  8. java虚拟机(六)--垃圾收集器和内存分配策略
  9. (转)vim编辑器操作命令大全-绝对全
  10. 王垠代表作《完全用Linux工作》