Preparando MOJI

Bingo!

1000ms 262144K

Description:

The game of bingo is played on a 5 × 5 square grid filled with distinct numbers between 1 and 75. In this problem you will consider a generalized version played on an n × n grid with distinct numbers between 1 and m (m ≥ n2).

A player begins by selecting a randomly generated bingo grid (generated uniformly among all available grids). Then k distinct numbers between 1 and m will be called at random (called uniformly among all available sets of k numbers). For each called number that appears on the grid, the player marks that cell. The score at the end is 2 raised to the power of (number of completely marked rows plus number of completely marked columns).

Determine the expected value of the score. The expected score may be very large. If the expected score is larger than 1099, print 1099 instead (for example as "1e99" without the quotes).

Input:

Input will consist of three integers n, m, k (1 ≤ n ≤ 300; n2 ≤ m ≤ 100000; n ≤ k ≤ m).

Output:

Print the smaller of 1099 and the expected score. Your answer must be correct within an absolute or relative error of 10 - 9.

Sample Input:

1 2 1

Sample Output:

2.5

Sample Input:

2 4 3

Sample Output:

4

Sample Input:

7 59164 40872

Sample Output:

3.1415926538

Informação

Codeforces

Provedor Codeforces

Código CF457D

Tags

combinatoricsmathprobabilities

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:53:10

Relacionados

Nada ainda