Cutting a Fence

题意翻译

给出 $a[1...n]$ 。 定义 $f$ : $$f(i,k)=\min_{i\leq j\leq i+k-1}\{a[j]\}$$ 之后有 $m$ 个询问,每个询问给出一个数 $k$,问所有 $f(j,k) (1\leq j\leq n-k+1)$ 的平均值。 $1\leq n,m\leq 10^6$. 感谢@皎月半洒花 提供翻译。

题目描述

Vasya the carpenter has an estate that is separated from the wood by a fence. The fence consists of $ n $ planks put in a line. The fence is not closed in a circle. The planks are numbered from left to right from 1 to $ n $ , the $ i $ -th plank is of height $ a_{i} $ . All planks have the same width, the lower edge of each plank is located at the ground level. Recently a local newspaper "Malevich and Life" wrote that the most fashionable way to decorate a fence in the summer is to draw a fuchsia-colored rectangle on it, the lower side of the rectangle must be located at the lower edge of the fence. Vasya is delighted with this idea! He immediately bought some fuchsia-colored paint and began to decide what kind of the rectangle he should paint. Vasya is sure that the rectangle should cover $ k $ consecutive planks. In other words, he will paint planks number $ x $ , $ x+1 $ , $ ... $ , $ x+k-1 $ for some $ x $ $ (1<=x<=n-k+1) $ . He wants to paint the rectangle of maximal area, so the rectangle height equals $ min\ a_{i} $ for $ x<=i<=x+k-1 $ , $ x $ is the number of the first colored plank. Vasya has already made up his mind that the rectangle width can be equal to one of numbers of the sequence $ k_{1},k_{2},...,k_{m} $ . For each $ k_{i} $ he wants to know the expected height of the painted rectangle, provided that he selects $ x $ for such fence uniformly among all $ n-k_{i}+1 $ possible values. Help him to find the expected heights.

输入输出格式

输入格式


The first line contains a single integer $ n $ $ (1<=n<=10^{6}) $ — the number of planks in the fence. The second line contains a sequence of integers $ a_{1},a_{2},...,a_{n} $ ( $ 1<=a_{i}<=10^{9} $ ) where $ a_{i} $ is the height of the $ i $ -th plank of the fence. The third line contains an integer $ m $ $ (1<=m<=10^{6}) $ and the next line contains $ m $ space-separated integers $ k_{1},k_{2},...,k_{m} $ $ (1<=k_{i}<=n) $ where $ k_{i} $ is the width of the desired fuchsia-colored rectangle in planks.

输出格式


Print $ m $ whitespace-separated real numbers, the $ i $ -th number equals the expected value of the rectangle height, if its width in planks equals $ k_{i} $ . The value will be considered correct if its absolute or relative error doesn't exceed $ 10^{-9} $ .

输入输出样例

输入样例 #1

3
3 2 1
3
1 2 3

输出样例 #1

2.000000000000000
1.500000000000000
1.000000000000000

输入样例 #2

2
1 1
3
1 2 1

输出样例 #2

1.000000000000000
1.000000000000000
1.000000000000000

说明

Let's consider the first sample test. - There are three possible positions of the fence for $ k_{1}=1 $ . For the first position $ (x=1) $ the height is 3, for the second one $ (x=2) $ the height is 2, for the third one $ (x=3) $ the height is 1. As the fence position is chosen uniformly, the expected height of the fence equals ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF212D/600a596c50e02741a32b22d7848d1d9bd697d1fa.png); - There are two possible positions of the fence for $ k_{2}=2 $ . For the first position $ (x=1) $ the height is 2, for the second one $ (x=2) $ the height is 1. The expected height of the fence equals ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF212D/d8c78108bbe97570655d46138ac5fa6c3f66cb3d.png); - There is the only possible position of the fence for $ k_{3}=3 $ . The expected height of the fence equals 1.