CCF_201612-1_最大波动

Posted 冷暖知不知

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CCF_201612-1_最大波动相关的知识,希望对你有一定的参考价值。

http://115.28.138.223/view.page?gpid=T47

 

水。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#include<cmath>
using namespace std;

int a[1005];

int main()
{
    int n;
    scanf("%d",&n);
    for(int i = 1;i <= n;i++)   scanf("%d",&a[i]);
    int maxx = 0;
    for(int i = 2;i <= n;i++)   maxx = max(maxx,abs(a[i]-a[i-1]));
    printf("%d\n",maxx);
    return 0;
}

 

以上是关于CCF_201612-1_最大波动的主要内容,如果未能解决你的问题,请参考以下文章

CCF CSP 201609-1 最大波动

CCF - 201609-1 - 最大波动

CCF——最大波动(2016-9)

CCF201609-1 最大波动(100分)序列处理

CCF CSP 201612-1 中间数

CCF-CSP 201609 赛题训练