跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F1853. Kindergarten

    ID: 1859 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 8 上传者: 标签>数据结构动态规划贪心算法思想挑战难度共享题库Codeforces英文题面题目来源题面语言

Kindergarten

题目描述

D. Kindergarten
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

In a kindergarten, the children are being divided into groups. The teacher put the children in a line and associated each child with his or her integer charisma value. Each child should go to exactly one group. Each group should be a nonempty segment of consecutive children of a line. A group's sociability is the maximum difference of charisma of two children in the group (in particular, if the group consists of one child, its sociability equals a zero).

The teacher wants to divide the children into some number of groups in such way that the total sociability of the groups is maximum. Help him find this value.

Input

The first line contains integer n− the number of children in the line (1≤n≤106).

The second line contains n integers ai− the charisma of the i-th child (-109ai≤109).

Output

Print the maximum possible total sociability of all groups.

Examples
Input
5
1 2 3 1 2
Output
3
Input
3
3 3 3
Output
0
Note

In the first test sample one of the possible variants of an division is following: the first three children form a group with sociability 2, and the two remaining children form a group with sociability 1.

In the second test sample any division leads to the same result, the sociability will be equal to 0 in each group.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1424 题。保留原作者与原赛事署名。