CF212D.Cutting a Fence

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Vasya the carpenter has an estate that is separated from the wood by a fence. The fence consists of nn planks put in a line. The fence is not closed in a circle. The planks are numbered from left to right from 1 to nn , the ii -th plank is of height aia_{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 kk consecutive planks. In other words, he will paint planks number xx , x+1x+1 , ...... , x+k1x+k-1 for some xx (1<=x<=nk+1)(1<=x<=n-k+1) . He wants to paint the rectangle of maximal area, so the rectangle height equals min aimin\ a_{i} for x<=i<=x+k1x<=i<=x+k-1 , xx 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 k1,k2,...,kmk_{1},k_{2},...,k_{m} . For each kik_{i} he wants to know the expected height of the painted rectangle, provided that he selects xx for such fence uniformly among all nki+1n-k_{i}+1 possible values. Help him to find the expected heights.

输入格式

The first line contains a single integer nn (1<=n<=106)(1<=n<=10^{6}) — the number of planks in the fence. The second line contains a sequence of integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=1091<=a_{i}<=10^{9} ) where aia_{i} is the height of the ii -th plank of the fence.

The third line contains an integer mm (1<=m<=106)(1<=m<=10^{6}) and the next line contains mm space-separated integers k1,k2,...,kmk_{1},k_{2},...,k_{m} (1<=ki<=n)(1<=k_{i}<=n) where kik_{i} is the width of the desired fuchsia-colored rectangle in planks.

输出格式

Print mm whitespace-separated real numbers, the ii -th number equals the expected value of the rectangle height, if its width in planks equals kik_{i} . The value will be considered correct if its absolute or relative error doesn't exceed 10910^{-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 k1=1k_{1}=1 . For the first position (x=1)(x=1) the height is 3, for the second one (x=2)(x=2) the height is 2, for the third one (x=3)(x=3) the height is 1. As the fence position is chosen uniformly, the expected height of the fence equals ;
  • There are two possible positions of the fence for k2=2k_{2}=2 . For the first position (x=1)(x=1) the height is 2, for the second one (x=2)(x=2) the height is 1. The expected height of the fence equals ;
  • There is the only possible position of the fence for k3=3k_{3}=3 . The expected height of the fence equals 1.
首页