C. Functions again
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

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 ≤ 10^5) — the size of the array a.

The second line contains n integers a1, a2, ..., an (-10^9 ≤ ai ≤ 10^9) — 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

题意:求公式的最大值。
思路:
  b[i]:abs(num[i]-num[i+1]),c[N]:-abs(num[i]-num[i+1])  (i%2==1)
  b[i]:-abs(num[i]+num[i+1]),c[N]:abs(num[i]-num[i+1])  (i%2==0)
  然后分别求b,c的区间连续最大值,二者中较大着就是答案。
#include<bits/stdc++.h>
using namespace std;
#define N 100005
#define LL long long
#define INF 10000000005
int num[N],b[N],c[N]; int main()
{
int n;
scanf("%d",&n);
for(int i=;i<n;i++)
scanf("%d",&num[i]);
for(int i=;i<n-;i++)
{
if(i%)
{
b[i]=abs(num[i]-num[i+]);
c[i]=-abs(num[i]-num[i+]);
}
else
{
b[i]=-abs(num[i]-num[i+]);
c[i]=abs(num[i]-num[i+]);
}
}
LL res1=-INF,res2=-INF,tmp=,l=;
for(int i=;i<n-;i++)
{
tmp+=b[i];
if(tmp>res1)
res1=tmp;
if(tmp<)
tmp=;
}
tmp=;
for(int i=;i<n-;i++)
{
tmp+=c[i];
if(tmp>res2)
res2=tmp;
if(tmp<)
tmp=;
}
printf("%I64d\n",max(res1,res2));
return ;
}

最新文章

  1. 19-typedef
  2. Centos 下编译安装Redis
  3. 有关define定义函数所注意的实例
  4. linux下mv命令使用方法
  5. makefile学习小结
  6. mysql-关于Unix时间戳(unix_timestamp)
  7. ☆☆配置NDK环境
  8. equals(),hashcode()方法详解
  9. 在制作joomla模板过程中遇到的问题
  10. 【Android实战开发】3G技术和Android发展简介
  11. Java多线程yield
  12. Python:开发Sublime插件,方便PHP开发
  13. java synchronized 线程同步机制详解
  14. JAVA中Socket的用法模拟服务端和客户端
  15. dwr3+spring实现消息实时推送
  16. 自动化服务部署(二):Linux下安装jenkins
  17. 《Linux内核设计与实现》 第五周 读书笔记(第十八章)
  18. 设计模式学习--Abstarct Factory
  19. mybatis中xml文件的${}和#{}区别
  20. C# 每月第一天和最后一天

热门文章

  1. mongodb09----replicattion set--健壮性
  2. linux怎么区别文本文件和二进制文件
  3. POJ2594 Treasure Exploratio —— 最小路径覆盖 + 传递闭包
  4. YTU 1011: Rails
  5. HTML5、javascript写的craps游戏
  6. Java用户注册代码
  7. Atom vim mode
  8. AutoIT: 如何设置GUICtrlCreateCombo选项为不可修改状态
  9. 聊聊Shiro
  10. bzoj4196 [Noi2015]软件包管理器——树链剖分