UVA10288 Coupons

2024-06-11 13:32
文章标签 coupons uva10288

本文主要是介绍UVA10288 Coupons,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题意:n个物品(兑换券),每次从中选择一个(不取出),求期望多少次可以取遍所有的物品n<=33。

题解:先说一下概率吧:显然为1 * (n-1)/n * (n-2)/n * ... * 1/n 。这道题要求的期望一定不能直接取概率的倒数,因为直接取倒数的意义是一次取n个,期望多少次可以取遍,与题目不符。应该对于每一步取倒数然后相加作为答案。ans = 1 * n/(n-1) * n/(n-2) ... * n。实现的时候用long long,并且注意要不停地约分,不然会爆long long。

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
#define LL long long
LL n;
LL fz, fm; //当前分子和分母
LL adz, adm; //增加的分子和分母
LL gcd(LL a, LL b) {if (!b) return a;return gcd(b, a%b);
}
void add() {LL g = gcd(fm, adm);LL t1 = fz*adm/g+adz*fm/g, t2 = fm/g*adm;fz = t1; fm = t2;g = gcd(fz, fm);fz/=g; fm/=g;
}
int lg(LL n)
{int cnt = 0;while (n) ++cnt, n/=10;return cnt;
}
void put(int cnt, char c) {while (cnt>0) putchar(c), --cnt;
}
void print() {if (fz % fm == 0) {cout << fz << '\n';return;}LL a = fz/fm , b = fz%fm, c = fm;put(lg(a) + 1, ' ');cout << b << '\n';cout << a << ' ';put(lg(c), '-');put(1, '\n');put(lg(a) + 1, ' ');cout << c << '\n';
}
int main()
{while (cin >> n) {LL i;fz = 0; fm = 1;adz = 0; adm = 1;for (i = 0; i<n; ++i) {adz = n; adm = n - i;add();}print();}return 0;
}


这篇关于UVA10288 Coupons的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1051303

相关文章

票息(Coupons)是什么?折价债券(Discount Bond)又是什么?

什么是Coupons? 中文版 在债券的语境中,“票息”(coupons)是指债券发行人定期支付给债券持有人的利息支付。这些支付通常是每半年或每年进行一次,虽然也有其他支付频率。票息率(coupon rate)以债券面值的百分比表示。 债券票息的解释 定义和机制: 票息: 这是债券持有人在债券到期之前定期收到的利息支付。票息率: 这是基于债券面值的年利率。例如,一张面值为$1,000的债

UVA 10288 - Coupons(概率递推)

UVA 10288 - Coupons 题目链接 题意:n个张票,每张票取到概率等价,问连续取一定次数后,拥有所有的票的期望 思路:递推,f[i]表示还差i张票的时候期望,那么递推式为 f(i)=f(i)∗(n−i)/n+f(i−1)∗i/n+1 化简后递推即可,输出要输出分数比较麻烦 代码: #include <cstdio>#include <cstring>#i

【Codeforces Round #376 (Div. 2)】 Codeforces 731B Coupons and Discounts

The programming competition season has already started and it’s time to train for ICPC. Sereja coaches his teams for a number of year and he knows that to get ready for the training session it’s no

CodeForces 754D Fedor and coupons

题目链接:http://codeforces.com/contest/754/problem/D 题意:给你n个优惠券,每个优惠券是一个区间,他能给这个区间的所有商品进行打折,现让你选择k个优惠券,使得能够重复打折的商品最大,让你输出有多少个商品被打折了,并输出你选择的优惠券编号 解析!:其实说白了就是给你n个区间,每个区间会覆盖一个范围,让你选择k个区间,使得你重复覆盖的范围尽可能大,那么我