POJ 2096 Collecting Bugs DP

Source: Internet
Author: User
Tags integer numbers

Collecting Bugs
Time Limit: 10000MS Memory Limit: 64000K
Total Submissions: 2842 Accepted: 1405
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


#include <iostream> #include <cstring> #include <cstdio>using namespace std; #define M 1010double d[m][ M];int Main () {    int n,m;    while (cin>>n>>m) {        d[n][m]=0.0;        int i,j;        for (i=n;i>=0;i--) for            (j=m;j>=0;j--) {                if (i==n&&j==m)   continue;                D[i][j]= (i* (m-j) *d[i][j+1]+ (n-i) *j*d[i+1][j]+ (n-i) * (M-J) *d[i+1][j+1]+n*m)/(N*M-I*J);            }        printf ("%.4lf\n", D[0][0]);    }    return 0;}


POJ 2096 Collecting Bugs DP

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.