UVA 10375 Choose and divide(数论)

The binomial coefficient C(m,n) is defined as

         m!
C(m,n) = --------
         n!(m-n)!

Given four natural numbers p, q, r, and s, compute the the result of dividing
C(p,q) by C(r,s).

The 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.

The 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

Output for Sample Input

0.12587
505606.46055
1.28223
0.48996
2.00000
3.99960

唯一分解定理:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<limits.h>
#include<vector>
#include<cmath>
typedef long long LL;
typedef unsigned long long ULL;
using namespace std;
const int maxn=10005;
int e[maxn];
int p,q,r,s;
int visit[maxn];
vector<int>prime;
void is_prime(int n)
{
    int m=sqrt(n+0.5);
    memset(visit,0,sizeof(visit));
    for(int i=2;i<=m;i++)
    {
        for(int j=i*i;j<=n;j+=i)
          visit[j]=1;
    }
}
void get_prime(int n)
{
    for(int i=2;i<=n;i++)
    {
        if(!visit[i])
            prime.push_back(i);
    }
}
void add_integer(int n,int d)
{
    for(int i=0;i<prime.size();i++)
    {
        while(n%prime[i]==0)
        {
            n/=prime[i];
            e[i]+=d;
        }
        if(n==1)
            break;
    }
}
void add_factorial(int n,int d)
{
    for(int i=1;i<=n;i++)
        add_integer(i,d);
}
int main()
{
    is_prime(maxn-1);
    get_prime(maxn-1);
    while(cin>>p>>q>>r>>s)
    {
        memset(e,0,sizeof(e));
        add_factorial(p,1);
        add_factorial(q,-1);
        add_factorial(p-q,-1);
        add_factorial(r,-1);
        add_factorial(s,1);
        add_factorial(r-s,1);
        double ans=1.0;
        for(int i=0;i<prime.size();i++)
            ans*=pow(prime[i],e[i]);
        printf("%.5f\n",ans);
    }
    return 0;
}

还有一种方法:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<limits.h>
typedef long long LL;
typedef unsigned long long ULL;
using namespace std;
int p,q,r,s;

int main()
{
    while(~scanf("%d%d%d%d",&p,&q,&r,&s))
    {
        if(p-q<q)//q和p-q中较大值的阶乘和p的阶乘消去
           q=p-q;
        if(r-s<s)
           s=r-s;
        double ans=1.0;
        for(int i=1;i<=q||i<=s;i++)
        {
            if(i<=q)
                ans=ans*(p-q+i)/i;
            if(i<=s)
                ans=ans/(r-s+i)*i;
        }
        printf("%.5f\n",ans);
    }
    return 0;
}

UVA 10375 Choose and divide(数论),布布扣,bubuko.com

时间: 2024-10-10 11:10:28

UVA 10375 Choose and divide(数论)的相关文章

UVA 10375 - Choose and divide(数论)(组合数学)

题目大意:给出  p ,q, r, s这四个数,C(m, n) = m! / (m ? n)! n!   ,让你求解   C(p, q) by C(r, s)  ,即两个阶乘相除. 思路:(   p!*s!*(r-s)!  ) /(  q!*(p-q)!*r!  ) 筛法求素数,唯一分解定理,用函数实现,从而求其各种阶乘,代码如下 #include<iostream>//唯一分解定理 #include<cstdio> #include<cstring> #include

【暑假】[数学]UVa 10375 Choose and divide

UVa 10375 Choose and divide 题目: http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=19601 思路: maxn=10000 如果计算maxn!再保存的话显然装不下. 但答案由阶乘的积或商组成,所以可以用唯一分解定理求解.大题思路就是把目前答案的质因子的指数用数组e保存,乘除都对e操作. 需要注意的是筛法求素数优化后的写法. 代码: 1 #include<iostream> 2 #include

UVA 10375 Choose and divide(唯一分解定理)

这么大数的乘法.除法运算,肯定不能先全部乘起来,我的思路是计算出分子.分母上的每个数的个数(因为最大的数为10000,可以开一个数组记录个数). 利用了随机数方法终于知道错在哪了,中间如果出现连乘还是会溢出,这点没想到,以下是我的溢出代码: #include<stdio.h> #include<math.h> #include<iostream> #include<string.h> #include<stdlib.h> #include<

UVA - 10375 - Choose and divide (组合数)

题目传送:UVA - 10375 思路:用double存答案,不过要注意是边乘边除,这样不会爆double,还有记得乘的时候要把int转换成double AC代码: #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #include <cmath> #include <queue> #include <stack> #

UVA 10375 Choose and divide

紫上给得比较奇怪,其实没有必要用唯一分解定理.我觉得这道题用唯一分解只是为了表示大数. 但是分解得到的幂,累乘的时候如果顺序很奇怪也可能溢出.其实直接边乘边除就好了.因为答案保证不会溢出, 设定一个精度范围,如果中间结果超过了精度范围就保存起来,最后sort一遍从两端同时乘就不会溢出了. /********************************************************* * --------------Tyrannosaurus--------- * * aut

UVA 10375 Choose and divide【唯一分解定理】

题意:求C(p,q)/C(r,s),4个数均小于10000,答案不大于10^8 思路:根据答案的范围猜测,不需要使用高精度.根据唯一分解定理,每一个数都可以分解成若干素数相乘.先求出10000以内的所有素数,用a数组表示唯一分解式中个素数的指数,求出每个分子部分的素因子,并且相应的素数的指数加一.分母则减一.最后求解唯一分解式的值. #include<stdio.h> #include<string.h> #include<math.h> const int N=1e4

UVa 10375 Choose and divide (唯一分解定理)

题目 题目大意 已知\(C(m, n) = m! / (n!(m - n)!)\), 输入整数\(p\), \(q\), \(r\), \(s\)(\(p ≥ q\), \(r ≥ s\), \(p\), \(q\), \(r\), \(s ≤ 10000\)), 计算\(C(p, q) / C(r, s)\).输出保证不超过\(10^8\), 保留\(5\)位小数 题解 这道题还是挺水吧... 首先如果直接算出\(C(p, q)\)和\(C(r, s)\)是肯定不可能的, C++存不下这么大的

10375 - Choose and divide(唯一分解定理的运用 eratosthenes构造素数表)

我觉得数学类的题目,每一道都有很好的解决方法,都很有保存的意义和价值. 这道题目里面,巧妙地运用了 唯一分解定理,辅以素数的eratosthenes筛法构造,很好地解决了题目.值得思考和深入的学习. #include<cstdio> #include<cstring> #include<cmath> #include<vector> #include<algorithm> using namespace std; vector<int>

10375 - Choose and divide

#include<bits/stdc++.h> using namespace std; const int maxn = 10000 + 5; int e[maxn],vis[maxn]; vector<int> primes; void add_primes() { memset(vis,0,sizeof(vis)); int m = sqrt(10000+0.5); for(int i=2;i<=m;i++) if(!vis[i]) for(int j=i*i;j<