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.
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 ( - 109 ≤ ai ≤ 109).
Print the maximum possible total sociability of all groups.
5 1 2 3 1 2
3
3 3 3 3
0
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
const int maxn = 1e6+5;
int n, a[maxn];
long long int dp[maxn][2];
int main ()
{
scanf("%d%d",&n,&a[1]);
for (int i=2;i<=n;i++)
{
scanf("%d",&a[i]);
if(a[i]>a[i-1])
{
dp[i][0]=max(dp[i-1][1],dp[i-1][0]+a[i]-a[i-1]);
dp[i][1]=max(dp[i-1][1],dp[i-1][0]);
}
else
{
dp[i][1]=max(dp[i-1][0],dp[i-1][1]+a[i-1]-a[i]);
dp[i][0]=max(dp[i-1][0],dp[i-1][1]);
}
}
printf("%lld\n", max(dp[n][0], dp[n][1]));
return 0;
}