Collecting Bugs
Time Limit: 10000MS |
|
Memory Limit: 64000K |
Total Submissions: 3091 |
|
Accepted: 1521 |
Case Time Limit: 2000MS |
|
Special Judge |
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 with all bugs categories, he calls the program disgusting, publishes this spreadsheet on his home page, an D forgets completely about the program.
Companies, Macrosoft and Microhard is in tight competition. Microhard wants to decrease sales of one Macrosoft program. They hire Ivan to prove, the program in question is disgusting. However, Ivan has a complicated problem. This new program have S subcomponents, and finding bugs of all types in each subcomponent would take too long before the TA Rget could be reached. So Ivan and Microhard agreed to use a simpler criteria---Ivan should find at least one bugs in each subsystem and at LEAs T one bug of each category.
Macrosoft knows about these plans and it wants to estimate the time that's required for Ivan to call their program Disgusti Ng. It's important because the company releases a new version of soon, so it can correct its plans and release it quicker. Nobody would is interested in Ivan's opinion about the reliability of the obsolete version.
A Bug found in the program can is of any category with equal probability. Similarly, the bug can be found in any given subsystem with equal probability. Any particular bugs cannot belong to the different categories or happen simultaneously in both different subsystems. The number of bugs in the program was almost infinite, so the probability of finding a new bug of some category in some sub System does not reduce after finding any number of bugs of the that category in the that subsystem.
Find an average time (in days of Ivan's work) required to name the program disgusting.
Input
Input file contains the 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-4 digits after the de Cimal Point.
Sample Input
1 2
Sample Output
3.0000
Source
Northeastern Europe 2004, Northern subregion
Test instructions: The topic can be directly understood as having two barrels, the first barrel loaded with n balls, and the second one with M balls. Each time a ball is dyed black from the first bucket and the second one. Q. How many times do I need to dye all the balls black?
AC Code
#include <stdio.h> #include <string.h>double dp[1010][1010];int main () {int n,m;while (scanf ("%d%d", &n , &m)!=eof) {int i,j;dp[n][m]=0;for (i=m-1;i>=0;i--) {dp[n][i]= (m*1.0)/(M-i) +dp[n][i+1];} for (i=n-1;i>=0;i--) {dp[i][m]= (n*1.0)/(N-i) +dp[i+1][m];} for (i=n-1;i>=0;i--) {for (j=m-1;j>=0;j--) {dp[i][j]= (n-i) *j*dp[i+1][j]+i* (m-j) *dp[i][j+1]+ (n-i) * (M-J) *dp[i +1][J+1]+N*M)/(N*M-I*J);}} printf ("%.4lf\n", Dp[0][0]);}}
Poj Topic 2096 Collecting Bugs (probability dp)