http://lightoj.com/volume_showproblem.php?problem=1104
| Time Limit: 2 second(s) | Memory Limit: 32 MB |
Sometimes some mathematical results are hard to believe. One of the common problems is the birthday paradox. Suppose you are in a party where there are 23 people including you. What is the probability that at least two people in the party have same birthday? Surprisingly the result is more than 0.5. Now here you have to do the opposite. You have given the number of days in a year. Remember that you can be in a different planet, for example, in Mars, a year is 669 days long. You have to find the minimum number of people you have to invite in a party such that the probability of at least two people in the party have same birthday is at least 0.5.
Input
Input starts with an integer T (≤ 20000), denoting the number of test cases.
Each case contains an integer n (1 ≤ n ≤ 105) in a single line, denoting the number of days in a year in the planet.
Output
For each case, print the case number and the desired result.
Sample Input | Output for Sample Input |
| 2 365 669 | Case 1: 22 Case 2: 30 |
题意:
在一个有 n 天的星球上,邀请一些人来参加聚会,
两个人生日相同的概率 >0.5 ,问至少需要请多少人。
参考思路:百度百科
Code:
#include<cstdio
#include<cstring>
const int MYDD = 1103;
int main() {
int TT;
scanf("%d",&TT);
int Kcase=1;
while(TT--) {
int n,ans=1;
scanf("%d",&n);
double p=1;
for(int j=n-1; j>=0; j--) {
p=p*(j*1.0)/(n*1.0);
if(p<=0.5) {
break;
}
ans++;
// printf("**** p: %lf\n",p);
}
printf("Case %d: %d\n",Kcase++,ans);//漏掉了 Kcase++
// printf("%lf",364.0*363.0/(365.0*365.0));
}
return 0;
}
/* By: Shyazhut */

本文探讨了生日悖论问题,即在一个特定数量的人群中至少两人拥有相同生日的概率超过0.5的情况。通过数学分析,文章提供了计算不同星球年长下所需人数的方法,并附带源代码实现。

255

被折叠的 条评论
为什么被折叠?



