codeforces Name That Tune (概率dp)

题意:
D - Name That Tune
Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Appoint description: 

Description

It turns out that you are a great fan of rock band AC/PE. Peter learned that and started the following game: he plays the first song of the list of n songs of the group, and you have to find out the name of the song. After you tell the song name, Peter immediately plays the following song in order, and so on.

The i-th song of AC/PE has its recognizability pi. This means that if the song has not yet been recognized by you, you listen to it for exactly one more second and with probability of pi percent you recognize it and tell it's name. Otherwise you continue listening it. Note that you can only try to guess it only when it is integer number of seconds after the moment the song starts playing.

In all AC/PE songs the first words of chorus are the same as the title, so when you've heard the first ti seconds of i-th song and its chorus starts, you immediately guess its name for sure.

For example, in the song Highway To Red the chorus sounds pretty late, but the song has high recognizability. In the song Back In Blue, on the other hand, the words from the title sound close to the beginning of the song, but it's hard to name it before hearing those words. You can name both of these songs during a few more first seconds.

Determine the expected number songs of you will recognize if the game lasts for exactly T seconds (i. e. you can make the last guess on the second T, after that the game stops).

If all songs are recognized faster than in T seconds, the game stops after the last song is recognized.

Input

The first line of the input contains numbers n and T (1 ≤ n ≤ 50001 ≤ T ≤ 5000), separated by a space. Next n lines contain pairs of numbers pi and ti (0 ≤ pi ≤ 1001 ≤ ti ≤ T). The songs are given in the same order as in Petya's list.

Output

Output a single number — the expected number of the number of songs you will recognize in T seconds. Your answer will be considered correct if its absolute or relative error does not exceed 10 - 6.

Sample Input

Input
2 2
50 2
10 1
Output
1.500000000
Input
2 2
0 2
100 2
Output
1.000000000
Input
3 3
50 3
50 2
25 2
Output
1.687500000
Input
2 2
0 2
0 2
Output
1.000000000
 
    
分析:我们可以定义dp[i][j]表示第i首歌在第j秒的时候被猜出来,那么当第i首歌被猜出来的时候,前i-1首歌也被猜出来,状态转移就发生在第i-1层到第i层之间;
PS:最终的期望就等于每层的概率之和,这是因为猜对歌的期望就等于对每首歌都猜对的期望和;
#include <iostream>
#include <stdio.h>
#include <string>
#include <string.h>
#include <cstdio>
#include <algorithm>
using namespace std;
double p[5500],dp[5500][5500];
int t[5500],n,T;

double pow( double p,int t )
{
  double ans=1;
  for(int i=1;i<=t;i++)ans*=p;
  return ans;
}

void DP()
{
  dp[0][0]=1.0;
  double ans=0.0;
  for(int i=1;i<=n;i++)
      {
        double f=0.0;
        double tt=pow(  1-p[i], t[i]-1 );
        for(int j=i;j<=T;j++)
         {
           f=f*( 1-p[i] )+dp[i-1][j-1];
           if( j>=t[i] )
           {
             f=f-dp[i-1][j-t[i]]*tt;
             dp[i][j]=f*p[i]+dp[i-1][j-t[i]]*tt;
           }
           else dp[i][j]=f*p[i];
           ans+=dp[i][j];
         }
       }
   printf("%.9lf\n",ans);
}

int main()
{
  while(scanf("%d%d",&n,&T)!=EOF)
  {
     memset(dp,0,sizeof(dp));
     for(int i=1;i<=n;i++)
     {
        scanf("%lf%d",&p[i],&t[i]);
        p[i]/=100;
     }
     DP();
  }
  return 0;
}

 
   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值