D. Name That Tune
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

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
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

感觉集齐了各种坑,萌萌哒~ 以后只能默默地给田神拎包了

9288439 2014-12-28 07:06:00 njczy2010 D - Name That Tune GNU C++ Accepted 483 ms 196200 KB
9288416 2014-12-28 07:01:48 njczy2010 D - Name That Tune GNU C++ Runtime error on test 36 93 ms 196100 KB
9288373 2014-12-28 06:54:26 njczy2010 D - Name That Tune GNU C++ Runtime error on test 36 109 ms 196100 KB
9288341 2014-12-28 06:49:32 njczy2010 D - Name That Tune GNU C++ Runtime error on test 36 93 ms 196200 KB
9288329 2014-12-28 06:46:58 njczy2010 D - Name That Tune GNU C++ Runtime error on test 36 93 ms 196100 KB
9288318 2014-12-28 06:44:55 njczy2010 D - Name That Tune GNU C++ Wrong answer on test 3 93 ms 196100 KB
9288297 2014-12-28 06:40:00 njczy2010 D - Name That Tune GNU C++ Wrong answer on test 3 62 ms 196100 KB
9288283 2014-12-28 06:36:34 njczy2010 D - Name That Tune GNU C++ Wrong answer on test 3 109 ms 196100 KB
9288245 2014-12-28 06:25:16 njczy2010 D - Name That Tune GNU C++ Wrong answer on test 7 62 ms 196200 KB
9288232 2014-12-28 06:20:57 njczy2010 D - Name That Tune GNU C++ Wrong answer on test 7 124 ms 196100 KB
9272178 2014-12-26 04:14:38 njczy2010 D - Name That Tune GNU C++ Time limit exceeded on test 13 1000 ms 196200 KB
9272163 2014-12-26 04:09:52 njczy2010 D - Name That Tune GNU C++ Time limit exceeded on test 13 1000 ms 196200 KB
9267879 2014-12-25 16:29:08 njczy2010 D - Name That Tune GNU C++ Wrong answer on test 6 62 ms 196200 KB
9267835 2014-12-25 16:25:22 njczy2010 D - Name That Tune GNU C++ Memory limit exceeded on test 1 108 ms 262100 KB
9267811 2014-12-25 16:23:15 njczy2010 D - Name That Tune GNU C++ Memory limit exceeded on test 1 93 ms 262100 KB 
 #include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#include<map>
#include<string>
#include<vector>
#include<queue>
#include<cmath>
#define eps 1e-3
#define ll long long
#define N 5005
#define M 10005
#define mod 2007 using namespace std; int n,T;
double dp[N][N];
double ans;
double tot;
double p[N];
int t[N];
//double q[N][N]; void ini()
{
ans=;tot=;
T++;
memset(dp,,sizeof(dp));
// memset(q,0,sizeof(q));
int i;
for(i=;i<=n;i++){
scanf("%lf%d",&p[i],&t[i]);
p[i]/=;
}
dp[][]=1.0;
//for(i=1;i<=n;i++){
// q[i][1]=p[i];
// q[i][ t[i] ]=1;
// for(j=2;j<=t[i]-1;j++){
// q[i][j]=q[i][j-1]*(1.0-p[i]);
// }
// }
} void solve()
{
int i,j;
int tmin,tmax;
tmin=,tmax=;
//double tmp;
for(i=;i<=min(n,T);i++){
tmin++;tmax=min(T,tmax+t[i]);
// tmp=pow(1-p[i],t[i]-1);
for(j=tmin;j<min(tmax,tmin+t[i]-);j++){
dp[j][i]=dp[j-][i]*(-p[i])+dp[j-][i-]*p[i];
}
if(j<=tmax){
dp[j][i]=dp[j-][i]*(-p[i])+dp[j-][i-]*p[i]+dp[ j-t[i] ][i-]*pow(-p[i],t[i]);
j++;
}
if(i==) continue;
for(;j<=tmax;j++){
dp[j][i]=(dp[j-][i]-dp[ j-t[i]- ][i-]*pow(-p[i],t[i]-))
*(-p[i])+dp[j-][i-]*p[i]+dp[ j-t[i] ][i-]*pow(-p[i],t[i]);
}
}
} void out()
{
int i,j;
// for(j=1;j<=T;j++){
// for(i=1;i<=n;i++) printf(" j=%d i=%d dp=%.4f\n",j,i,dp[j][i]);
// }
for(j=;j<=T;j++){
for(i=;i<=n;i++){
tot+=dp[j][i];
}
}
//ans/=tot;
printf("%.8f\n",tot);
} int main()
{
//freopen("data.in","r",stdin);
// scanf("%d",&T);
//while(T--){
while(scanf("%d%d",&n,&T)!=EOF){
ini();
solve();
out();
}
return ;
}

Codeforces Round #284 (Div. 2) D. Name That Tune [概率dp]的更多相关文章

  1. Codeforces Round #301 (Div. 2) D. Bad Luck Island 概率DP

    D. Bad Luck Island Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/540/pr ...

  2. Codeforces Round #284 (Div. 1) B. Name That Tune(概率DP)(难)

    B. Name That Tune time limit per test 1 second memory limit per test 256 megabytes input standard in ...

  3. Codeforces Round #105 (Div. 2) D. Bag of mice 概率dp

    题目链接: http://codeforces.com/problemset/problem/148/D D. Bag of mice time limit per test2 secondsmemo ...

  4. Codeforces Round #293 (Div. 2) D. Ilya and Escalator 概率DP

    D. Ilya and Escalator time limit per test 2 seconds memory limit per test 256 megabytes input standa ...

  5. Codeforces Round #233 (Div. 2)D. Painting The Wall 概率DP

                                                                                   D. Painting The Wall ...

  6. Codeforces Round #597 (Div. 2) E. Hyakugoku and Ladders 概率dp

    E. Hyakugoku and Ladders Hyakugoku has just retired from being the resident deity of the South Black ...

  7. Codeforces Round #267 (Div. 2) C. George and Job(DP)补题

    Codeforces Round #267 (Div. 2) C. George and Job题目链接请点击~ The new ITone 6 has been released recently ...

  8. Codeforces Round #284 (Div. 2)A B C 模拟 数学

    A. Watching a movie time limit per test 1 second memory limit per test 256 megabytes input standard ...

  9. Codeforces Round #284 (Div. 2)

    题目链接:http://codeforces.com/contest/499 A. Watching a movie You have decided to watch the best moment ...

随机推荐

  1. dp 20190618

    C. Party Lemonade 这个题目是贪心,开始我以为是背包,不过也不太好背包,因为这个L都已经是1e9了. 这个题目怎么贪心呢?它是因为这里有一个二倍的关系,所以说val[i]=val[i- ...

  2. 三、绘图和可视化之matplotlib

    #matplotlib简单绘图之plot import matplotlib.pyplot as plt a=[1,2,3] b=[10,2,30] plt.plot(a)#纵坐标为a的值,横坐标为a ...

  3. w3 parse a url

     最新链接:https://www.w3.org/TR/html53/ 2.6 URLs — HTML5 li, dd li { margin: 1em 0; } dt, dfn { font-wei ...

  4. Js图片缩放代码 鼠标滚轮放大缩小 图片向右旋转

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  5. dedeCMS数据库字段详细介绍

    dede_addonarticle 附加文章表 aid int(11) 文章编号 typeid int(11) 分类栏目编号 body mediumtext 文章内容 dede_addonflash ...

  6. swift-通知的基本使用

    swift-通知的基本使用   //通知的使用 1.发通知.(以这条通知为例,通知名字:nickNameNotification 通知参数:title) NSNotificationCenter.de ...

  7. c++ 结构体,设置物品体积并输出物品属性

    #include <iostream> using namespace std; struct box { char maker[40]; float height; float widt ...

  8. 前端css学习记录

    参考资料:CSS权威指南(第三版)中文版 核心要点: HTML负责标记文档的结构(HyperText Markup Language),结构化语言. CSS 负责表现文档的样式(Cascading S ...

  9. ELK踩过的各种坑 6.4版本

    一.elasticsearch 1.服务正常启动,但不能正常访问 [root@linux-node1 elasticsearch]# systemctl start elasticsearch [ro ...

  10. vue2.0的基本特性

    本文目前总结的特性如下1.侦听属性和计算属性2.class的绑定3.条件渲染时的注意事项4.v-if和v-for同时使用的注意事项5.插槽6.ref,父组件调用子组件的另一种方式7.<keep- ...