Codeforces Round #284 (Div. 2) D. Name That Tune [概率dp]
1 second
256 megabytes
standard input
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.
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 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.
2 2
50 2
10 1
1.500000000
2 2
0 2
100 2
1.000000000
3 3
50 3
50 2
25 2
1.687500000
2 2
0 2
0 2
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]的更多相关文章
- 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 ...
- 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 ...
- 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 ...
- 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 ...
- Codeforces Round #233 (Div. 2)D. Painting The Wall 概率DP
D. Painting The Wall ...
- 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 ...
- 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 ...
- 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 ...
- Codeforces Round #284 (Div. 2)
题目链接:http://codeforces.com/contest/499 A. Watching a movie You have decided to watch the best moment ...
随机推荐
- 补题—Codeforces Round #346 (Div. 2) _智商欠费系列
这次的题目相对容易 但是智商依旧不够用 原因有三点 1.英文水平堪忧 2 逻辑不严密 3 细节掌握不够好 传送门 http://codeforces.com/contest/659 A 题目大意 圆环 ...
- 利用python进行数据分析3_Pandas的数据结构
Series #通过list构建Series ser_obj=pd.Series(range(10,20)) print(type(ser_obj))#<class 'pandas.core.s ...
- 玩4K必备知识:HDMI1.4、2.0、2.0a、2.0b接口参数对比【扫盲贴】
https://www.4k123.com/thread-55369-1-1.html 前言:玩4K的同学都知道,HDMI接口是视频传输最常用的接口,但是这个接口却有好几个版本HDMI1.4.HDMI ...
- Spring根据XML配置文件注入属性 其实也是造bean,看看是使用constructor还是setter顺带完成属性赋值
方法一使用setter方法 package com.swift; public class Book { private String bookName; public void setBook(St ...
- Django REST framework 中的视图
1.Request REST framework传入视图的request对象不再是Django默认的Httprequest对象,而是DRF提供的扩展类的Request类的对象 常用属性 request ...
- 【Linux】启动Tomcat遇到Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
找不到JAVA_HOME路径,需要做以下变更: 找到启动路径所在的目录: cd bin/ vi catalina.sh 加入以下信息: export JAVA_HOME=/home/gongzi/ht ...
- Mac单机模式安装启动Kafka
1.下载kafka,网址: https://www.apache.org/dyn/closer.cgi?path=/kafka/2.0.0/kafka_2.12-2.0.0.tgz 2.移动tar包到 ...
- (转)去除背景色的方法,适合iOS5/6/7/8.0beta
通常使用UISearchbar都需要去除其背景色来与自己的界面风格保持协调,但是UISearchbar的设计随着iOS版本的升级不断地在发生着变化,下面我们通过分析UISearchbar在各个iOS版 ...
- 每周一题 3n+1问题
3n+1问题 #include<iostream> #include<math.h> #include<map> using namespace std; map& ...
- 00037_this关键字
1.成员变量和局部变量同名问题 当在方法中出现了局部变量和成员变量同名的时候,可以在成员变量名前面加上this.来区别成员变量和局部变量. class Person { private int age ...