Fishes

题意翻译

## Description 有一个长为$n$ ,宽为$m$ 的鱼缸,还有一个边长为$r$ 的正方形渔网。你可以往鱼缸里放$k$ 条鱼,问用渔网随机在浴缸里捞鱼的最大期望是多少。~~不懂什么是期望的自己去百度~~ ## Input 一行4个正整数代表$n, m, r, k$ ## Output 输出一个实数,表示最大期望 感谢@xunzhen 提供的翻译

题目描述

While Grisha was celebrating New Year with Ded Moroz, Misha gifted Sasha a small rectangular pond of size $ n×m $ , divided into cells of size $ 1×1 $ , inhabited by tiny evil fishes (no more than one fish per cell, otherwise they'll strife!). The gift bundle also includes a square scoop of size $ r×r $ , designed for fishing. If the lower-left corner of the scoop-net is located at cell $ (x,y) $ , all fishes inside the square $ (x,y)...(x+r-1,y+r-1) $ get caught. Note that the scoop-net should lie completely inside the pond when used. Unfortunately, Sasha is not that skilled in fishing and hence throws the scoop randomly. In order to not frustrate Sasha, Misha decided to release $ k $ fishes into the empty pond in such a way that the expected value of the number of caught fishes is as high as possible. Help Misha! In other words, put $ k $ fishes in the pond into distinct cells in such a way that when the scoop-net is placed into a random position among $ (n-r+1)·(m-r+1) $ possible positions, the average number of caught fishes is as high as possible.

输入输出格式

输入格式


The only line contains four integers $ n,m,r,k $ ( $ 1<=n,m<=10^{5} $ , $ 1<=r<=min(n,m) $ , $ 1<=k<=min(n·m,10^{5}) $ ).

输出格式


Print a single number — the maximum possible expected number of caught fishes. You answer is considered correct, is its absolute or relative error does not exceed $ 10^{-9} $ . Namely, let your answer be $ a $ , and the jury's answer be $ b $ . Your answer is considered correct, if ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF912D/103fdd279ae1fcd52ca9e69b75914ca39dd93497.png).

输入输出样例

输入样例 #1

3 3 2 3

输出样例 #1

2.0000000000

输入样例 #2

12 17 9 40

输出样例 #2

32.8333333333

说明

In the first example you can put the fishes in cells $ (2,1) $ , $ (2,2) $ , $ (2,3) $ . In this case, for any of four possible positions of the scoop-net (highlighted with light green), the number of fishes inside is equal to two, and so is the expected value. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF912D/40c8b1b61edb367e0e414618a2e0b777e6a3b2ba.png)