CF429D.Tricky Function

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Iahub and Sorin are the best competitive programmers in their town. However, they can't both qualify to an important contest. The selection will be made with the help of a single problem. Blatnatalag, a friend of Iahub, managed to get hold of the problem before the contest. Because he wants to make sure Iahub will be the one qualified, he tells Iahub the following task.

You're given an (1-based) array aa with nn elements. Let's define function f(i,j)f(i,j) (1<=i,j<=n)(1<=i,j<=n) as (ij)2+g(i,j)2(i-j)^{2}+g(i,j)^{2} . Function g is calculated by the following pseudo-code:

int g(int i, int j) {
    int sum = 0;
    for (int k = min(i, j) + 1; k <= max(i, j); k = k + 1)
        sum = sum + a[k];
    return sum;
}

Find a value minij  f(i,j)min_{i≠j}  f(i,j) .

Probably by now Iahub already figured out the solution to this problem. Can you?

输入格式

The first line of input contains a single integer nn ( 2<=n<=1000002<=n<=100000 ). Next line contains nn integers a[1]a[1] , a[2]a[2] , ..., a[n]a[n] ( 104<=a[i]<=104-10^{4}<=a[i]<=10^{4} ).

输出格式

Output a single integer — the value of minij  f(i,j)min_{i≠j}  f(i,j) .

输入输出样例

  • 输入#1

    4
    1 0 0 -1
    

    输出#1

    1
    
  • 输入#2

    2
    1 -1
    

    输出#2

    2
    
首页