The sixth week of the camp e question

Source: Internet
Author: User

E-Expectations (classic question) Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%lld &%llusubmit Status

Description

Given a dice with n sides and you had to find the expected number of times you had to throw this dice to see all I TS faces at least once. Assume that's the dice is fair, that's means when you throw the dice, the probability of occurring any face is equal.

For example, for a fair, and sided coin, the result is 3. Because When you first throw the coin and you'll definitely see a new face. If you throw the coin again, the chance of getting the opposite side are 0.5, and the chance of getting the same side is 0. 5. So, the result is

1 + (1 + 0.5 * (1 + 0.5 * ...))

= 2 + 0.5 + 0.52 + 0.53 + ...

= 2 + 1 = 3

Input

Input starts with an integer T (≤100), denoting the number of test cases.

Each case is starts with a line containing an integer n (1≤n≤105).

Output

For each case, print the case number and the expected number of the times that you had to throw the dice to see all it faces at L East once. Errors less than10-6 'll be ignored.

Sample Input

5

1

2

3

6

100

Sample Output

Case 1:1

Case 2:3

Case 3:5.5

Case 4:14.7

Case 5:518.737751764

A dice, asking for the expectation that each face should be turned at least once

The expectation that each face is turned over once is n/(n-i)

#include <iostream>#include<cstdio>using namespacestd;intMain () {intI,j,t,ca=0; CIN>>u;  while(t--)    {        intN; CIN>>N; Doubleans=0;  for(i=0; i<=n-1; i++) ans+=n*1.0/(ni); printf ("Case %d:%.10f\n",++Ca,ans); }     return 0;}
View Code

The sixth week of the camp e question

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.