zoukankan      html  css  js  c++  java
  • HDU 5805 NanoApe Loves Sequence

    NanoApe Loves Sequence

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/131072 K (Java/Others)
    Total Submission(s): 421    Accepted Submission(s): 195


    Problem Description
    NanoApe, the Retired Dog, has returned back to prepare for the National Higher Education Entrance Examination!

    In math class, NanoApe picked up sequences once again. He wrote down a sequence with n numbers on the paper and then randomly deleted a number in the sequence. After that, he calculated the maximum absolute value of the difference of each two adjacent remained numbers, denoted as F.

    Now he wants to know the expected value of F, if he deleted each number with equal probability.
     
    Input
    The first line of the input contains an integer T, denoting the number of test cases.

    In each test case, the first line of the input contains an integer n, denoting the length of the original sequence.

    The second line of the input contains n integers A1,A2,...,An, denoting the elements of the sequence.

    1T10, 3n100000, 1Ai109
     
    Output
    For each test case, print a line with one integer, denoting the answer.

    In order to prevent using float number, you should print the answer multiplied by n.
     
    Sample Input
    1
    4
    1 2 3 4
     
    Sample Output
    6
     维护前边差最大值,后边差的最大值。然后枚举删除的数。时间复杂度O(n)
    注意abs   zz
    /* ***********************************************
    Author        :guanjun
    Created Time  :2016/8/7 9:01:43
    File Name     :hdu5805.cpp
    ************************************************ */
    #include <iostream>
    #include <cstring>
    #include <cstdlib>
    #include <stdio.h>
    #include <algorithm>
    #include <vector>
    #include <queue>
    #include <set>
    #include <map>
    #include <string>
    #include <math.h>
    #include <stdlib.h>
    #include <iomanip>
    #include <list>
    #include <deque>
    #include <stack>
    #define ull unsigned long long
    #define ll long long
    #define mod 90001
    #define INF 0x3f3f3f3f
    #define maxn 10010
    #define cle(a) memset(a,0,sizeof(a))
    const ull inf = 1LL << 61;
    const double eps=1e-5;
    using namespace std;
    priority_queue<int,vector<int>,greater<int> >pq;
    struct Node{
        int x,y;
    };
    struct cmp{
        bool operator()(Node a,Node b){
            if(a.x==b.x) return a.y> b.y;
            return a.x>b.x;
        }
    };
    
    bool cmp(int a,int b){
        return a>b;
    }
    ll a[100010];
    ll p[100100];
    ll s[100100];
    int n;
    int main()
    {
        #ifndef ONLINE_JUDGE
        freopen("in.txt","r",stdin);
        #endif
        //freopen("out.txt","w",stdout);
        int t;
        cin>>t;
        while(t--){
            cin>>n;
            ll ans=0;
            for(int i=1;i<=n;i++)scanf("%I64d",&a[i]);
            cle(p);
            for(int i=2;i<=n;i++){
                p[i]=max(abs(a[i]-a[i-1]),p[i-1]);
            }
            cle(s);
            for(int i=n-1;i>=1;i--){
                s[i]=max(s[i+1],abs(a[i+1]-a[i]));
            }
            for(int i=1;i<=n;i++){
                if(i==1)ans+=s[2];
                if(i==n)ans+=p[n-1];
                if(i<n&&i>1){
                    ans+=max(max(abs(a[i+1]-a[i-1]),p[i-1]),s[i+1]);
                }
            }
            printf("%I64d
    ",ans);
    
        }
        return 0;
    }
  • 相关阅读:
    垃圾回收算法(1)标记-清除
    golang的interface剖析
    库文件的使用
    linux loadavg详解(top cpu load)
    撰写的《大数据处理框架Apache Spark设计与实现》出版了
    VUE文件上传删除、图片上传删除、视频上传删除
    三元运算符
    VScode格式化后单引号变双引号解决办法
    VUE实现分页
    绝望!新手小白在VUE组件之间进行传值上浪费了很多时间~
  • 原文地址:https://www.cnblogs.com/pk28/p/5745597.html
Copyright © 2011-2022 走看看