Birthday Paradox LightOJ

来源:互联网 发布:华为大数据工程师待遇 编辑:程序博客网 时间:2024/05/16 17:07

Description

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

2
365
669

Sample Output

Case 1: 22
Case 2: 30

Hint

题意

题解:

AC代码

#include<cstdio>#include<cstring>#include<stack>#include <set>#include<iostream>#include<algorithm>using namespace std;typedef long long LL;int to[2][4] = {0,1,0,-1,1,0,-1,0};int main(){    int t;    scanf("%d",&t);    int kase = 1;    while (t--){        double n;        scanf("%lf",&n);        double i;        double p = 1;        if (n==1) {            printf("Case %d: 1\n",kase++);            continue;        }        for (i = 1; ; ++i){            p = p*(n-i)/n;/*n个人不相同的概率*/            if (1.0-p>=0.5) break; /*至少两个人相同的概率*/        }        printf("Case %d: %d\n",kase++,(int)i);    }    return 0;}
原创粉丝点击