2017年“嘉杰信息杯” 中国大学生程序设计竞赛全国邀请赛 Partial Sum

Partial Sum

Accepted : 124 Submit : 450
Time Limit : 3000 MS Memory Limit : 65536 KB 

 

Partial Sum

Bobo has a integer sequence a1,a2,,an of length n . Each time, he selects two ends 0l<rn and add |rj=l+1aj|C into a counter which is zero initially. He repeats the selection for at most mtimes.

If each end can be selected at most once (either as left or right), find out the maximum sum Bobo may have.

Input

The input contains zero or more test cases and is terminated by end-of-file. For each test case:

The first line contains three integers n , m , C . The second line contains n integers a1,a2,,an .

  • 2n105
  • 12mn+1
  • |ai|,C104
  • The sum of n does not exceed 106 .

Output

For each test cases, output an integer which denotes the maximum.

Sample Input

4 1 1
-1 2 2 -1
4 2 1
-1 2 2 -1
4 2 2
-1 2 2 -1
4 2 10
-1 2 2 -1

Sample Output

3
4
2
0

题意:选取一段区间求和取绝对值,加在初始化为0的数值上,选了的区间不能再选,问最大的和是多少

解法:前缀和排序,最大和最小相减加起来就好了

 1 #include<bits/stdc++.h>
 2 #define  INF 1000000000
 3 #define ll long long
 4 using namespace std;
 5 ll x[123456];
 6 ll sum;
 7 int main()
 8 {
 9      std::ios::sync_with_stdio(false);
10     ll n,m,a,b;
11     while(cin>>n>>m>>a)
12     {
13         sum=0;
14         ll ans[123456];
15         ans[0]=0;
16         for(int i=1;i<=n;i++)
17         {
18             ll num;
19             cin>>num;
20             ans[i]=ans[i-1]+num;
21         }
22         ll cnt=0;
23         ll Max=0;
24         Max=max(Max,sum);
25         sort(ans,ans+1+n);
26         while(m--)
27         {
28             ll Pmax=ans[n--];
29             ll Pmin=ans[cnt++];
30            // cout<<Pmax<<" "<<Pmin<<endl;
31             sum+=abs(Pmax-Pmin)-a;
32             if(abs(Pmax-Pmin)-a<0) break;
33             Max=max(Max,sum);
34         }
35         cout<<Max<<endl;
36     }
37     return 0;
38 }

 

转载于:https://www.cnblogs.com/yinghualuowu/p/6875394.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值