Senior's Array

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 852    Accepted Submission(s): 311

Problem Description
One day, Xuejiejie gets an array A. Among all non-empty intervals of A, she wants to find the most beautiful one. She defines the beauty as the sum of the interval. The beauty of the interval---[L,R] is calculated by this formula : beauty(L,R) = A[L]+A[L+1]+……+A[R]. The most beautiful interval is the one with maximum beauty.

But as is known to all, Xuejiejie is used to pursuing perfection. She wants to get a more beautiful interval. So she asks Mini-Sun for help. Mini-Sun is a magician, but he is busy reviewing calculus. So he tells Xuejiejie that he can just help her change one value of the element of A to P . Xuejiejie plans to come to see him in tomorrow morning.

Unluckily, Xuejiejie oversleeps. Now up to you to help her make the decision which one should be changed(You must change one element).

 
Input
In the first line there is an integer T, indicates the number of test cases.

In each case, the first line contains two integers n and P. n means the number of elements of the array. P means the value Mini-Sun can change to.

The next line contains the original array.

1≤n≤1000, −109≤A[i],P≤109。

 
Output
For each test case, output one integer which means the most beautiful interval's beauty after your change.
 
Sample Input

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

 
Sample Output
8
2
 
Source
/**
题意:给出一个数组,如果用p代替数组中的一个数求最大的区间和
做法:dp(比赛的时候想得太多)
**/
#include <iostream>
#include <string.h>
#include <stdio.h>
#include <algorithm>
#define maxn 1100
#define INF 0x7fffffff
using namespace std;
long long mmap[maxn];
long long dp[][maxn];
long long n;
long long DP()
{
dp[][] = max((long long),mmap[]);
for(int i=;i<n;i++)
{
dp[][i] = max((long long),dp[][i-] + mmap[i]);
}
long long tmp = mmap[];
for(int i=;i<n;i++)
{
dp[][i] = dp[][i-] + mmap[i];
tmp = max(tmp,dp[][i]);
}
return tmp;
}
int main()
{
//#ifndef ONLINE_JUDGE
// freopen("in.txt","r",stdin);
//#endif // ONLINE_JUDGE
int T;
scanf("%d",&T);
while(T--)
{
long long p;
scanf("%lld %lld",&n,&p);
for(int i=;i<n;i++)
{
scanf("%lld",&mmap[i]);
}
memset(dp,,sizeof(dp));
long long res = -INF;
for(int i=;i<n;i++)
{
long long tt = mmap[i];
mmap[i] = p;
res = max(res,DP());
mmap[i] = tt;
}
printf("%lld\n",res);
}
return ;
}

最新文章

  1. 获取ICommand的图片
  2. loj 1063(求割点个数)
  3. Python OpenCV —— Border
  4. lambda表达式、内置函数、进制和文件操作
  5. Swift UI开发初探
  6. (大数据工程师学习路径)第一步 Linux 基础入门----基本概念及操作
  7. [学习OpenCV攻略][012][读取、修改、保存图像]
  8. win7开启wifi
  9. Zookeeper实现master选举
  10. 使用abcpdf分页设置的问题
  11. __x__(11)0906第三天__图片标签
  12. 新的尝试!ComponentOne WinForm 和 .NET Core 3.0
  13. 全面理解虚拟DOM(1)
  14. Linq(高级查询)
  15. POI Sax 事件驱动解析Excel2003文件
  16. CentOS 6.5使用Corosync + pacemaker实现httpd服务的高可用
  17. 谈谈你对Java面向对象的理解
  18. ABAP-增强-层级BOM-AB件业务
  19. 【开发者笔记】c# 调用java代码
  20. 前端开发之jQuery篇--选择器

热门文章

  1. BZOJ1179 [Apio2009]Atm 【tarjan缩点】
  2. php 获取客户端IP地址经纬度所在城市
  3. 【枚举】 最大子矩阵(I)
  4. JQuery学习四(过滤选择器)
  5. POJ 1698 最大流
  6. STM32 - 软件设置单片机重启
  7. RabbitMQ 作用
  8. Eclipse中安装插件的三种方式
  9. 深入HBase架构解析(一)
  10. Maven-Dependency Mechanism