Ilya and Escalator

Ilya got tired of sports programming, left university and got a job in the subway. He was given the task to determine the escalator load factor.

Let's assume that n people stand in the queue for the escalator. At each second one of the two following possibilities takes place: either the first person in the queue enters the escalator with probability p, or the first person in the queue doesn't move with probability (1 - p), paralyzed by his fear of escalators and making the whole queue wait behind him.

Formally speaking, the i-th person in the queue cannot enter the escalator until people with indices from 1 to i - 1 inclusive enter it. In one second only one person can enter the escalator. The escalator is infinite, so if a person enters it, he never leaves it, that is he will be standing on the escalator at any following second. Ilya needs to count the expected value of the number of people standing on the escalator after t seconds.

Your task is to help him solve this complicated task.

Input

The first line of the input contains three numbers n, p, t (1 ≤ n, t ≤ 2000, 0 ≤ p ≤ 1). Numbers n and t are integers, number p is real, given with exactly two digits after the decimal point.

Output

Print a single real number — the expected number of people who will be standing on the escalator after t seconds. The absolute or relative error mustn't exceed 10 - 6.

Examples

Input

1 0.50 1

Output

0.5

Input

1 0.50 4

Output

0.9375

Input

4 0.20 2

Output

0.4

这是一个求期望的题,有一群人排队进入一个只能进不能出的电梯,然后让你求在t时间的时候,有多少人在电梯上面的期望。

你先考虑两种特殊情况,一种是没到时间都上来了,另外一种时候没人上,剩下的都是一般情况就得用公式推了。也就是当然这个人上不上得看前一个人上没上。

#include<stdio.h>
#include<algorithm>
#include<string.h>
using namespace std;
double dp[2018][2018];
int main()
{
    int n,t;
    double p;
    while(~scanf("%d%lf%d",&n,&p,&t))
    {
        memset(dp,0,sizeof(dp));
        dp[0][0]=1;
        double ans=0;
        int i,j,k;
        for(i=1; i<=t; i++)
            for(j=n; j>=0; j--)
            {
                if(j==n)
                    dp[i][j]=dp[i- 1][j - 1]*p+dp[i-1][j];
                else
                    dp[i][j]=dp[i-1][j-1]*p+dp[i-1][j]*(1-p);
            }
        for(i=1;i<=t; i++)
            ans+=(dp[t][i]*i);
        printf("%lf\n",ans);
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/aini875/article/details/83145163
今日推荐