Something happened in Uzhlyandia again... There are riots on the streets... Famous Uzhlyandian superheroes Shean the Sheep and Stas the Giraffe were called in order to save the situation. Upon the arriving, they found that citizens are worried about maximum values of the Main Uzhlyandian Function f, which is defined as follows:
In the above formula, 1 ≤ l < r ≤ n must hold, where n is the size of the Main Uzhlyandian Array a, and |x| means absolute value of x. But the heroes skipped their math lessons in school, so they asked you for help. Help them calculate the maximum value of f among all possible values of l and r for the given array a.
Input
The first line contains single integer n (2 ≤ n ≤ 105) — the size of the array a.
The second line contains n integers a1, a2, ..., an (-109 ≤ ai ≤ 109) — the array elements.
Output
Print the only integer — the maximum value of f.
Examples
Input
5 1 4 2 3 1
Output
3
Input
4 1 5 4 7
Output
6
Note
In the first sample case, the optimal value of f is reached on intervals [1, 2] and [2, 5].
In the second case maximal value of f is reachable only on the whole array.
题意:
给出一个数组和与之有关的函数,求函数最大值。
代码:
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<algorithm>
using namespace std;
int n;
long long s1[100100], s2[100100];
int main()
{
while(~scanf("%d",&n))
{
memset(s1,0,sizeof(s1)); //清零
memset(s2,0,sizeof(s2));
for(int i=1;i<=n;i++) //存数组
scanf("%lld",&s1[i]);
for(int j=1;j<n;j++) //存差值
s2[j]=abs(s1[j]-s1[j+1]);
long long sum=0,maxx=0;
int t=0;
int k=1;
for(int i=k;i<n;i++)
{
if(t%2==0) //偶
{
sum+=s2[i];
t++;
}
else //奇
{
sum-=s2[i];
t++;
}
if(sum>maxx) //更新
maxx=sum;
if(sum<0) //重置
{
sum=0;
t=0;
i=k++;
}
}
printf("%lld\n",maxx);
}
}
在Uzhlyandia的动荡局势下,著名超级英雄Shean the Sheep和Stast the Giraffe被召回以解决危机。他们面临的是计算Main Uzhlyandian Function f的最大值任务,该函数依赖于数组元素之间的特定区间。通过数学挑战,他们寻求帮助来找到最优解。
5600

被折叠的 条评论
为什么被折叠?



