题目
Description
给出一个长度为 nn 的序列 aa,选出其中连续且非空的一段使得这段和最大。
Input
第一行是一个整数,表示序列的长度 n。
第二行有 n 个整数,第 i 个整数表示序列的第 i 个数字 ai 。
Output
输出一行一个整数表示答案。
Sample 1
Inputcopy | Outputcopy |
---|---|
7 | |
2 -4 -1 2 -4 3 | |
4 |
Hint
样例 1 解释
选取 [3, 5][ 子段 {3, -1, 2}其和为 4。
数据规模与约定
对于 40% 的数据,保证n≤2×103 。
对于100% 的数据,保证1≤n≤2×105 ,-104 =<ai<= 104 。
代码
#include <iostream>
#include <algorithm>
#include<math.h>
using namespace std;
int n,dp[200100];
int p[200100];
int main()
{
cin>>n;
for (int i = 0; i < n; i++)
{
cin>>p[i];
}
dp[0]=p[0];
for(int i = 1;i < n;i++)
{
dp[i]=max(dp[i-1]+p[i],p[i]);
}
sort(dp,dp+n);
cout<<dp[n-1];
}
总结
今天又是摆烂的一天,一开始用暴力只过了40%,琢磨半天搞出个dp。md一天就刷一道题,我在干嘛。我怎么还不阳啊,一天不阳提心吊胆。