CF1009C.Annoying Present

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Alice got an array of length nn as a birthday present once again! This is the third year in a row!

And what is more disappointing, it is overwhelmengly boring, filled entirely with zeros. Bob decided to apply some changes to the array to cheer up Alice.

Bob has chosen mm changes of the following form. For some integer numbers xx and dd , he chooses an arbitrary position ii ( 1in1 \le i \le n ) and for every j[1,n]j \in [1, n] adds x+ddist(i,j)x + d \cdot dist(i, j) to the value of the jj -th cell. dist(i,j)dist(i, j) is the distance between positions ii and jj (i.e. dist(i,j)=ijdist(i, j) = |i - j| , where x|x| is an absolute value of xx ).

For example, if Alice currently has an array [2,1,2,2][2, 1, 2, 2] and Bob chooses position 33 for x=1x = -1 and d=2d = 2 then the array will become [21+22, 11+21, 21+20, 21+21][2 - 1 + 2 \cdot 2,~1 - 1 + 2 \cdot 1,~2 - 1 + 2 \cdot 0,~2 - 1 + 2 \cdot 1] = [5,2,1,3][5, 2, 1, 3] . Note that Bob can't choose position ii outside of the array (that is, smaller than 11 or greater than nn ).

Alice will be the happiest when the elements of the array are as big as possible. Bob claimed that the arithmetic mean value of the elements will work fine as a metric.

What is the maximum arithmetic mean value Bob can achieve?

输入格式

The first line contains two integers nn and mm ( 1n,m1051 \le n, m \le 10^5 ) — the number of elements of the array and the number of changes.

Each of the next mm lines contains two integers xix_i and did_i ( 103xi,di103-10^3 \le x_i, d_i \le 10^3 ) — the parameters for the ii -th change.

输出格式

Print the maximal average arithmetic mean of the elements Bob can achieve.

Your answer is considered correct if its absolute or relative error doesn't exceed 10610^{-6} .

输入输出样例

  • 输入#1

    2 3
    -1 3
    0 0
    -1 -4
    

    输出#1

    -2.500000000000000
    
  • 输入#2

    3 2
    0 2
    5 0
    

    输出#2

    7.000000000000000
    
首页