"Probability" POJ 2096:collecting Bugs

Source: Internet
Author: User
Tags integer numbers

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. First say test instructions: A software has s subsystem, there are n kinds of bugs. Someone can find a bug in one day. Q, the expected value of gathered up n bugs in this software and the time of at least one bug in each subsystem (in days).  Note: Bug is infinite, each bug belongs to any one of the probability of a bug is 1/n; appears on each system is as possible, for 1/s.  Also open a two-dimensional array f[i][j], representing the number of days that I have a bug in J system to reach the target. Then divide four kinds: 1. Bugs found in J systems and within I.  At this point recursion: f[i][j]=f[i][j]*i/n*j/s.  2. In the J system is not within the I species, at this time: f[i][j]=f[i+1][j]* (n-i)/n*j/s.  3. Not within J system in I species, at this time: f[i][j]=f[i][j+1]* (s-j)/s*i/n.  4. Not in both, at this point: f[i][j]=f[i+1][j+1]* (s-j)/s* (n-i)/n. According to the desired definition, we combine the formula: f[i][j]=f[i+1][j]* (n-i)/n*j/s+f[i][j+1]* (s-j)/s*i/n+f[i+1][j+1]* (s-j)/s* (n-i)/n+f[i+1][j+1]* (s-j  )/s* (n-i)/n. Let's just make it a little bit more simple. (move F[i][j] to the left)and the accuracy of the card. LF It doesn't work, F can go through. Oh.
1#include <cstdio>2#include <cstring>3#include <cmath>4#include <algorithm>5 6 using namespacestd;7 8 Doublef[1005][1005];9 Ten intMain () One { A     intn,s; -      while(~SCANF ("%d%d",&n,&s)) -     { theMemset (F,0,sizeof(f)); -          for(inti=n;i>=0; i--) -              for(intj=s;j>=0; j--) -             { +                 if(n==i&&j==s)Continue; -F[i][j]= (Double) (f[i+1][j]* (n-i) *j+f[i][j+1]*i* (S-J) +f[i+1][j+1]* (n-i) * (S-J) +n*s)/(n*s-i*j); +             } Aprintf"%.4f\n", f[0][0]); at     } -     return 0; -}
View Code

"Probability" POJ 2096:collecting Bugs

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.