2012北邮腾讯创新俱乐部热身赛 A

本文分享了一场比赛经历,其中包含了一道经典的动态规划题目,复杂度为O(n),并详细介绍了解题思路和算法应用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

这场比赛打得还是挺开心的,ak了!哈哈哈~~A题是一道dp,复杂度O(n),挺经典的~


AMaximum sum
Accept:40Submit:103
Time Limit:1000MSMemory Limit:65536KB

Description

Given a set of n integers: A={a1, a2,..., an}, we define a function d(A) as below:

d(A)=sum{a[s1]~a[t1]}+sum{a[s2]~a[t2]}

The rule is 1<=s1<=t1<s2<=t2<=n.

Your task is to calculate d(A).

Input

The input consists of T(<=30) test cases. The number of test cases (T) is given in the first line of the input.
Each test case contains two lines. The first line is an integer n(2<=n<=50000). The second line contains n integers: a1, a2, ..., an. (|ai| <= 10000).There is an empty line after each case.

Output

Print exactly one line for each test case. The line should contain the integer d(A).

Sample Input

1

10

1 -1 2 2 3 -3 4 -4 5 -5

Sample Output

13

Hint

In the sample, we choose {2,2,3,-3,4} and {5}, then we can get the answer.

Huge input,scanf is recommended.



#include<iostream>
#include<vector>
#include<algorithm>
#include<cstdio>
#include<queue>
#include<stack>
#include<string>
#include<map>
#include<set>
#include<cmath>
#include<cassert>
#include<cstring>
#include<iomanip>
using namespace std;

#ifdef _WIN32
#define i64 __int64
#define out64 "%I64d\n"
#define in64 "%I64d"
#else
#define i64 long long
#define out64 "%lld\n"
#define in64 "%lld"
#endif

#define FOR(i,a,b)      for( int i = (a) ; i <= (b) ; i ++)
#define FF(i,a)         for( int i = 0 ; i < (a) ; i ++)
#define FFD(i,a)        for( int i = (a)-1 ; i >= 0 ; i --)
#define S64(a)          scanf(in64,&a)
#define SS(a)           scanf("%d",&a)
#define LL(a)           ((a)<<1)
#define RR(a)           (((a)<<1)+1)
#define SZ(a)           ((int)a.size())
#define PP(n,m,a)		puts("---");FF(i,n){FF(j,m)cout << a[i][j] << ' ';puts("");}
#define pb              push_back
#define CL(Q)           while(!Q.empty())Q.pop()
#define MM(name,what)   memset(name,what,sizeof(name))
#define read            freopen("in.txt","r",stdin)
#define write           freopen("out.txt","w",stdout)

const int inf = 0x3f3f3f3f;
const i64 inf64 = 0x3f3f3f3f3f3f3f3fLL;
const double oo = 10e9;
const double eps = 10e-10;
const double pi = acos(-1.0);
const int maxn = 51111;

int a[maxn];
int dp[maxn];
int sum[maxn];
int b[maxn];
int s2[maxn];
int n,T;

void dpstart()
{
    memset(dp,0,sizeof(dp));
    memset(sum,0,sizeof(sum));
    memset(b,0,sizeof(b));
    memset(s2,0,sizeof(s2));
    dp[1] = a[1];
    sum[1] = a[1];
    for(int i=2;i<=n;i++)
    {
        sum[i] = max(sum[i-1]+a[i],a[i]);
        dp[i] = max(dp[i-1],sum[i]);
    }
    b[n] = a[n];
    s2[n]=a[n];
    for(int i=n-1;i>=1;i--)
    {
        s2[i]=max(s2[i+1]+a[i],a[i]);
        b[i]=max(b[i+1],s2[i]);
    }
    int ans = -inf;
    for(int i=1;i<=n-1;i++)
    {
        ans = max(dp[i]+b[i+1],ans);
    }
    cout<<ans<<endl;
    return ;
}

int main()
{
    cin>>T;
    while(T--)
    {
        cin>>n;
        memset(a,0,sizeof(a));
        for(int i=1;i<=n;i++)
        {
            SS(a[i]);
        }
        dpstart();
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值