「CF498B」Name That Tune

2014年12月25日3,5801

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 ≤ 5000, 1 ≤ T ≤ 5000), separated by a space. Next n lines contain pairs of numbers pi and ti (0 ≤ pi ≤ 100, 1 ≤ 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 test(s)
input

output

input

output

input

output

input

output

 

题解

概率好难,都不会做啊

d[i][j]表示前i-1秒辨认了j首的概率

f[i][j+1]+=f[i][j]*(1-p[i])
f[i+1][j+1]+=f[i][j]*p[i]

如果没有什么几秒后辨识之类的就是这样结束了吧。。。

加上这个设定之后

f[i][j]转移到f[i][j+t[i]]的部分就不对了。。。

即f[i][j]原来有(1-p[i])^t[i]的概率转移到f[i][j+t[i]]

现在要把这部分改到f[i+1][j+t[i]]

 

avatar
1 Comment threads
0 Thread replies
0 Followers
 
Most reacted comment
Hottest comment thread
1 Comment authors
魔法炮 Recent comment authors
  Subscribe  
提醒
魔法炮

神死了……样例死活看不懂