博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 2096 Collecting Bugs(期望 dp 概率 推导 分类讨论)
阅读量:4333 次
发布时间:2019-06-07

本文共 4061 字,大约阅读时间需要 13 分钟。

Description

Ivan is fond of collecting. Unlike other people who collect post stamps, coins or other material stuff, he collects software bugs. When Ivan gets a new program, he classifies all possible bugs into n categories. Each day he discovers exactly one bug in the program and adds information about it and its category into a spreadsheet. When he finds bugs in all bug categories, he calls the program disgusting, publishes this spreadsheet on his home page, and forgets completely about the program. Two companies, Macrosoft and Microhard are in tight competition. Microhard wants to decrease sales of one Macrosoft program. They hire Ivan to prove that the program in question is disgusting. However, Ivan has a complicated problem. This new program has s subcomponents, and finding bugs of all types in each subcomponent would take too long before the target could be reached. So Ivan and Microhard agreed to use a simpler criteria --- Ivan should find at least one bug in each subsystem and at least one bug of each category. Macrosoft knows about these plans and it wants to estimate the time that is required for Ivan to call its program disgusting. It's important because the company releases a new version soon, so it can correct its plans and release it quicker. Nobody would be interested in Ivan's opinion about the reliability of the obsolete version. A bug found in the program can be of any category with equal probability. Similarly, the bug can be found in any given subsystem with equal probability. Any particular bug cannot belong to two different categories or happen simultaneously in two different subsystems. The number of bugs in the program is almost infinite, so the probability of finding a new bug of some category in some subsystem does not reduce after finding any number of bugs of that category in that subsystem. Find an average time (in days of Ivan's work) required to name the program disgusting.

 

Input

Input file contains two integer numbers, n and s (0 < n, s <= 1 000).

 

Output

Output the expectation of the Ivan's working days needed to call the program disgusting, accurate to 4 digits after the decimal point.

 

Sample Input

1 2

 

Sample Output

3.0000

 

Source

, Northern Subregion
 
dp求期望逆着递推求解题意:(题意看题目确实比较难道,n和s都要找半天才能找到)   一个软件有s个子系统,会产生n种bug   某人一天发现一个bug,这个bug属于一个子系统,属于一个分类   每个bug属于某个子系统的概率是1/s,属于某种分类的概率是1/n   问发现n种bug,每个子系统都发现bug的天数的期望。求解:         dp[i][j]表示已经找到i种bug,j个系统的bug,达到目标状态的天数的期望         dp[n][s]=0;要求的答案是dp[0][0];         dp[i][j]可以转化成以下四种状态:              dp[i][j],发现一个bug属于已经有的i个分类和j个系统。概率为(i/n)*(j/s);              dp[i][j+1],发现一个bug属于已有的分类,不属于已有的系统.概率为 (i/n)*(1-j/s);              dp[i+1][j],发现一个bug属于已有的系统,不属于已有的分类,概率为 (1-i/n)*(j/s);              dp[i+1][j+1],发现一个bug不属于已有的系统,不属于已有的分类,概率为 (1-i/n)*(1-j/s);        整理便得到转移方程
1 #include
2 #include
3 #include
4 using namespace std; 5 #define N 1006 6 #define S 1006 7 int n,s; 8 double dp[N][S]; 9 10 /*11 dp[i][j]表示已经找了i个bug,j个子系统的期望12 dp[n][s]=0;13 目标状态为dp[0][0] 14 15 16 dp[i][j]转化为下列4个状态17 dp[i][j]的时候,表示找到的bug属于i个bug和j个系统之中,则概率为(i/n)*(j/s)18 dp[i][j+1]的时候,表示找到的bug属于i个bug,但是不属于j个系统,则概率为(i/n)*(1-j/s)19 dp[i+1][j]的时候,表示找到的bug属于j个系统的,但是不属于i个bug里面的,则概率为(1-i/n)*(j/s)20 dp[i+1][j+1]的时候,表示找到的bug既不属于i个bug的,也不属于j个系统的,则概率为(1-i/n)*(1-j/s) 21 */22 23 int main()24 {25 while(scanf("%d%d",&n,&s)==2){26 memset(dp,0,sizeof(dp));27 dp[n][s]=0;28 for(int i=n;i>=0;i--){29 for(int j=s;j>=0;j--){30 if(i==n && j==s) continue;31 double p1=i*1.0*(s-j)/n/s;32 double p2=(n-i)*j*1.0/n/s;33 double p3=(n-i)*(s-j)*1.0/n/s;34 double p0=1-i*j*1.0/n/s;35 36 dp[i][j]=p1*dp[i][j+1]+p2*dp[i+1][j]+p3*dp[i+1][j+1]+1;37 dp[i][j]/=p0;38 39 }40 }41 printf("%lf\n",dp[0][0]);42 }43 return 0;44 }
View Code

 

转载于:https://www.cnblogs.com/UniqueColor/p/4794482.html

你可能感兴趣的文章
单工、半双工和全双工的定义
查看>>
Hdu【线段树】基础题.cpp
查看>>
时钟系统
查看>>
BiTree
查看>>
5个基于HTML5的加载动画推荐
查看>>
水平权限漏洞的修复方案
查看>>
静态链接与动态链接的区别
查看>>
Android 关于悬浮窗权限的问题
查看>>
如何使用mysql
查看>>
linux下wc命令详解
查看>>
敏捷开发中软件测试团队的职责和产出是什么?
查看>>
在mvc3中使用ffmpeg对上传视频进行截图和转换格式
查看>>
python的字符串内建函数
查看>>
Spring - DI
查看>>
微软自己的官网介绍 SSL 参数相关
查看>>
Composite UI Application Block (CAB) 概念和术语
查看>>
ajax跨域,携带cookie
查看>>
阶段3 2.Spring_01.Spring框架简介_03.spring概述
查看>>
阶段3 2.Spring_02.程序间耦合_1 编写jdbc的工程代码用于分析程序的耦合
查看>>
阶段3 2.Spring_01.Spring框架简介_04.spring发展历程
查看>>