UVA 10375 Choose and divide

紫上给得比较奇怪,其实没有必要用唯一分解定理。我觉得这道题用唯一分解只是为了表示大数。

但是分解得到的幂,累乘的时候如果顺序很奇怪也可能溢出。其实直接边乘边除就好了。因为答案保证不会溢出,

设定一个精度范围,如果中间结果超过了精度范围就保存起来,最后sort一遍从两端同时乘就不会溢出了。

/*********************************************************
*      --------------Tyrannosaurus---------              *
*   author AbyssalFish                                   *
**********************************************************/
/*
数的表示,唯一表示,固定进制,变进制(编码),素因子幂
不唯一表示 很多
*/
#include<bits/stdc++.h>
using namespace std;

const int maxn = 1e4+1;

vector<double> ans_fac;
const double up_b = 1e8, low_b = 1e-8;

//#define LOCAL
int main()
{
#ifdef LOCAL
    freopen("in.txt","r",stdin);
#endif
    int p, q, r, s;
    while(~scanf("%d%d%d%d", &p, &q, &r, &s)){
        int m = max(p, r), x = p-q, y = r-s;
        double ans = 1;
        for(int i = 2; i <= m; i++){
            int t = 0;
            if(q < i && i <= p) t++;
            if(i <= x) t--;
            if(s < i && i <= r) t--;
            if(i <= y) t++;
            if(t){
                if(t < 0)
                   while(ans /= i, ++t) ;
                else
                   do ans *= i; while( --t) ;
                if(ans > up_b || ans < low_b) {
                    ans_fac.push_back(ans);
                    ans = 1;
                }
            }
        }
        if(ans_fac.size()){
            sort(ans_fac.begin(),ans_fac.end());
            int i = 0, j = ans_fac.size()-1;
            while(i < j){
                ans *= ans_fac[i++]*ans_fac[j--];
            }
            if(i == j) ans *= ans_fac[i];
            ans_fac.clear();
        }
        printf("%.5lf\n", ans);
    }
    return 0;
}
时间: 2024-12-24 15:13:35

UVA 10375 Choose and divide的相关文章

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-n

【暑假】[数学]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【唯一分解定理】

题意:求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(数论)(组合数学)

题目大意:给出  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 (唯一分解定理)

题目 题目大意 已知\(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<