zoukankan      html  css  js  c++  java
  • Codeforces 518 D Ilya and Escalator

    Discription

    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

    设f[i][j]为过了T秒后电梯上有j个人的概率,直接转移就行了
    #include<bits/stdc++.h>
    #define ll long long
    #define D double
    using namespace std;
    const int maxn=2005;
    D P,ans=0,f[maxn][maxn];
    int N,T;
    
    inline void dp(){
    	f[0][0]=1;
    	for(int i=0;i<T;i++){
    	    for(int j=0;j<N;j++) if(f[i][j]>0){
    	    	f[i+1][j+1]+=f[i][j]*P;
    	    	f[i+1][j]+=f[i][j]*(1-P);
    		}
    		f[i+1][N]+=f[i][N];
    	}
    }
    
    inline void calc(){
    	for(int i=1;i<=N;i++) ans+=f[T][i]*i;
    }
    
    int main(){
    	cin>>N>>P>>T;
    	dp(),calc();
    	printf("%.11lf
    ",ans);
    	return 0;
    }
    

      

     
  • 相关阅读:
    IIS请求筛选模块被配置为拒绝超过请求内容长度的请求(转)
    解决Android AVD启动报错问题
    找新朋友
    【枚举】【SDOI 2011】【bzoj 2241】打地鼠
    Invalidate、RedrawWindow与UpdateWindow的差别
    蓝牙DA14580开发:固件格式、二次引导和烧写
    【C/C++学院】0723-32位与64位/调戏窗体程序/数据分离算法/内存检索/二分查找法/myVC
    Maven 使用 二——nexus
    Linux程序编译链接动态库版本号的问题
    Key-Value Observing (键值监測)
  • 原文地址:https://www.cnblogs.com/JYYHH/p/8805735.html
Copyright © 2011-2022 走看看