CF13C.Sequence

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Little Petya likes to play very much. And most of all he likes to play the following game:

He is given a sequence of NN integer numbers. At each step it is allowed to increase the value of any number by 11 or to decrease it by 11 . The goal of the game is to make the sequence non-decreasing with the smallest number of steps. Petya is not good at math, so he asks for your help.

The sequence aa is called non-decreasing if a1<=a2<=...<=aNa_{1}<=a_{2}<=...<=a_{N} holds, where NN is the length of the sequence.

输入格式

The first line of the input contains single integer NN ( 1<=N<=50001<=N<=5000 ) — the length of the initial sequence. The following NN lines contain one integer each — elements of the sequence. These numbers do not exceed 10910^{9} by absolute value.

输出格式

Output one integer — minimum number of steps required to achieve the goal.

输入输出样例

  • 输入#1

    5
    3 2 -1 2 11
    

    输出#1

    4
    
  • 输入#2

    5
    2 1 1 1 1
    

    输出#2

    1
    
首页